diff options
author | posophe <[email protected]> | 2014-12-08 16:08:56 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2015-04-05 19:20:29 +0200 |
commit | 8241fc8122ddb94e5c6cba8514527a98c0d3b647 (patch) | |
tree | bc0b681d86fb9176e3e51ff4d22be67fb80366fe /libmate-desktop/test.c | |
parent | 6c630b37ed28e237db4a337ba5c7f6faf000aa48 (diff) | |
download | mate-desktop-8241fc8122ddb94e5c6cba8514527a98c0d3b647.tar.bz2 mate-desktop-8241fc8122ddb94e5c6cba8514527a98c0d3b647.tar.xz |
Fix missing return in non-void functions
Diffstat (limited to 'libmate-desktop/test.c')
-rw-r--r-- | libmate-desktop/test.c | 1 |
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; } |