summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2013-08-11 14:39:26 -0400
committerDana Jansens <danakj@orodu.net>2013-08-11 14:43:23 -0400
commitbcfe59fce27bb6a7aa7bc9dde2ad461dfaf68816 (patch)
treeffa5290699cfc33ce13bd58b37ea8be1ca9a6ad6 /openbox/actions
parentb4b780bae62852d098080b33919c5e12c7e41227 (diff)
Fix some compiler warnings
Void function should actually be declared void. Not-reached switch condition should still return something.
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/if.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/actions/if.c b/openbox/actions/if.c
index 3f4c4d64..411e95c0 100644
--- a/openbox/actions/if.c
+++ b/openbox/actions/if.c
@@ -46,10 +46,10 @@ void action_if_startup(void)
actions_register("If", setup_func, free_func, run_func);
}
-static inline set_bool(xmlNodePtr node,
- const char *name,
- gboolean *on,
- gboolean *off)
+static inline void set_bool(xmlNodePtr node,
+ const char *name,
+ gboolean *on,
+ gboolean *off)
{
xmlNodePtr n;