aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authoroga2008-01-03 01:56:25 +0000
committeroga2008-01-03 01:56:25 +0000
commit5db1823209826021ce6753f79f1e38e70187727e (patch)
tree16e452452f905a3e0ba0898fa08fd32411259b92 /conf.c
parentcb293e80c5174df26a2a16b054dd07da6f0af943 (diff)
downloadcwm-5db1823209826021ce6753f79f1e38e70187727e.tar.gz
Kill some warnings intoduced with the execwm feature.
ok marc@
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.c b/conf.c
index f24fda1..9dfe618 100644
--- a/conf.c
+++ b/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 },