From: Josh Triplett Date: Fri, 28 Apr 2006 19:24:35 +0000 (-0700) Subject: Add dummy return to run function in hypnomoire, to fix warning. X-Git-Tag: 0.1~1^2~1 X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f06e6e5cc0576e4ad80dc307c0bec38e19c4ea87;p=free-sw%2Fxcb%2Fdemo Add dummy return to run function in hypnomoire, to fix warning. --- diff --git a/hypnomoire.c b/hypnomoire.c index b9746a2..cb4600b 100644 --- a/hypnomoire.c +++ b/hypnomoire.c @@ -172,6 +172,8 @@ void *run(void *param) usleep(1000000 / FRAME_RATE); } + + return 0; } int lookup_window(XCBWINDOW w)