summaryrefslogtreecommitdiff
path: root/libmate-desktop
diff options
context:
space:
mode:
authorposophe <[email protected]>2014-12-08 16:08:56 +0100
committerStefano Karapetsas <[email protected]>2015-04-05 19:20:29 +0200
commit8241fc8122ddb94e5c6cba8514527a98c0d3b647 (patch)
treebc0b681d86fb9176e3e51ff4d22be67fb80366fe /libmate-desktop
parent6c630b37ed28e237db4a337ba5c7f6faf000aa48 (diff)
downloadmate-desktop-8241fc8122ddb94e5c6cba8514527a98c0d3b647.tar.bz2
mate-desktop-8241fc8122ddb94e5c6cba8514527a98c0d3b647.tar.xz
Fix missing return in non-void functions
Diffstat (limited to 'libmate-desktop')
-rw-r--r--libmate-desktop/test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libmate-desktop/test.c b/libmate-desktop/test.c
index 0e97551..42daa9d 100644
--- a/libmate-desktop/test.c
+++ b/libmate-desktop/test.c
@@ -53,4 +53,5 @@ main (int argc, char **argv)
/* start application */
gtk_main ();
+ return 0;
}