Add dummy return to run function in hypnomoire, to fix warning.
authorJosh Triplett <josh@freedesktop.org>
Fri, 28 Apr 2006 19:24:35 +0000 (12:24 -0700)
committerJosh Triplett <josh@freedesktop.org>
Fri, 28 Apr 2006 19:24:35 +0000 (12:24 -0700)
hypnomoire.c

index b9746a2..cb4600b 100644 (file)
@@ -172,6 +172,8 @@ void *run(void *param)
 
                usleep(1000000 / FRAME_RATE);
        }
+
+        return 0;
 }
 
 int lookup_window(XCBWINDOW w)