summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan <okan>2011-06-24 05:40:09 +0000
committerokan <okan>2011-06-24 05:40:09 +0000
commitf6fcd0eb5d2f48b82f52b65fa343a83c74a8f55f (patch)
treecc38360ea3f157153570a9576d8cab6e66eab535 /calmwm.h
parent69cc58555de66b0ff67fd0c3880fcb70eb06f837 (diff)
downloadcwm-f6fcd0eb5d2f48b82f52b65fa343a83c74a8f55f.tar.gz
cwm-f6fcd0eb5d2f48b82f52b65fa343a83c74a8f55f.tar.xz
cwm-f6fcd0eb5d2f48b82f52b65fa343a83c74a8f55f.zip
alter a few function returns and prototypes; found by lint.
ok oga@
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/calmwm.h b/calmwm.h
index 112c8dd..a99c334 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -307,8 +307,8 @@ __dead void		 usage(void);
 
 void			 client_applysizehints(struct client_ctx *);
 struct client_ctx	*client_current(void);
-struct client_ctx	*client_cycle(struct screen_ctx *, int);
-int			 client_delete(struct client_ctx *);
+void			 client_cycle(struct screen_ctx *, int);
+void			 client_delete(struct client_ctx *);
 void			 client_draw_border(struct client_ctx *);
 struct client_ctx	*client_find(Window);
 void			 client_freeze(struct client_ctx *);
@@ -463,7 +463,7 @@ void			 xu_setstate(struct client_ctx *, int);
 void			 xu_setwmname(struct screen_ctx *);
 
 void			 u_exec(char *);
-int			 u_spawn(char *);
+void			 u_spawn(char *);
 
 void			*xcalloc(size_t, size_t);
 void			 xfree(void *);