summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2008-01-03 01:56:26 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2008-01-03 01:56:26 +0000
commit03f43472820e1c431395e378e68baf6cba9c04e8 (patch)
treeea07ff51935e328c9eb6c18e939e6902c378709c /app
parentd098983e0be41acd4adc153d5a98871784ee9d5f (diff)
Kill some warnings intoduced with the execwm feature.
ok marc@
Diffstat (limited to 'app')
-rw-r--r--app/cwm/conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c
index f24fda103..9dfe6184c 100644
--- a/app/cwm/conf.c
+++ b/app/cwm/conf.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: conf.c,v 1.17 2007/12/31 02:49:45 okan Exp $
+ * $Id: conf.c,v 1.18 2008/01/03 01:56:25 oga Exp $
*/
#include "headers.h"
@@ -374,8 +374,8 @@ struct {
{ "prevgroup", kbfunc_client_prevgroup, 0, 0 },
{ "maximize", kbfunc_client_maximize, KBFLAG_NEEDCLIENT, 0 },
{ "vmaximize", kbfunc_client_vmaximize, KBFLAG_NEEDCLIENT, 0 },
- { "exec", kbfunc_exec, 0, CWM_EXEC_PROGRAM },
- { "exec_wm", kbfunc_exec, 0, CWM_EXEC_WM },
+ { "exec", kbfunc_exec, 0, (void *)CWM_EXEC_PROGRAM },
+ { "exec_wm", kbfunc_exec, 0, (void *)CWM_EXEC_WM },
{ "ssh", kbfunc_ssh, 0, 0 },
{ "terminal", kbfunc_term, 0, 0 },
{ "lock", kbfunc_lock, 0, 0 },