Fix compiler warning about inline function
[dockapps/wmnotify.git] / src / wmnotify.c
index 9646d38..b767f66 100644 (file)
@@ -64,7 +64,7 @@ static int double_click_notif;
 static pthread_t timer_thread;
 
 
-inline void ErrorLocation(const char *file, int line)
+void ErrorLocation(const char *file, int line)
 {
        fprintf(stderr, "  Error in file \"%s\" at line #%d\n", file,
                line);
@@ -189,7 +189,9 @@ static void DoubleClick(void)
        int status;
 
        if (wmnotify_infos.mail_client_argv[0] != NULL) {
-               /* Starting external mail client. */
+               if (wmnotify_infos.debug)
+                       printf("%s: Starting mail client\n", PACKAGE);
+
                ExecuteCommand(wmnotify_infos.mail_client_argv);
 
                double_click_notif = true;
@@ -367,6 +369,9 @@ static void *TimerThread(void *arg)
                if (wmnotify_infos.debug)
                        printf("%s: Timer thread iteration.\n", PACKAGE);
 
+               if (manual_check && wmnotify_infos.debug)
+                       printf("%s: Manual check requested\n", PACKAGE);
+
                if ((manual_check == true) || (counter == 0)) {
                        new_messages = CheckForNewMail(manual_check);
                        manual_check = false;