summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2006-04-28 12:24:35 -0700
committerJosh Triplett <josh@freedesktop.org>2006-04-28 12:24:35 -0700
commitf06e6e5cc0576e4ad80dc307c0bec38e19c4ea87 (patch)
tree8f793f332bdabf887872cb1424d2f4a02a3dc766
parent316d55cd15a5fde929435a0e92c48d5f7655a94e (diff)
Add dummy return to run function in hypnomoire, to fix warning.
-rw-r--r--hypnomoire.c2
1 files changed, 2 insertions, 0 deletions
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)