diff options
author | okan <okan> | 2016-12-02 16:50:19 +0000 |
---|---|---|
committer | okan <okan> | 2016-12-02 16:50:19 +0000 |
commit | 5b7e66a13b79c1c8b7a4f2661912271f1777d892 (patch) | |
tree | ffb896af61a6e89c0db417a92dce85008ea4456e | |
parent | 94f681fc90229362e7e9bcc3c3699bb191f61ccc (diff) | |
download | cwm-5b7e66a13b79c1c8b7a4f2661912271f1777d892.tar.gz cwm-5b7e66a13b79c1c8b7a4f2661912271f1777d892.tar.xz cwm-5b7e66a13b79c1c8b7a4f2661912271f1777d892.zip |
use the correct type
-rw-r--r-- | conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.c b/conf.c index d0b5a97..f147163 100644 --- a/conf.c +++ b/conf.c @@ -59,7 +59,7 @@ static const char *color_binds[] = { static const struct { const char *tag; void (*handler)(void *, union arg *, enum xev); - int context; + enum context context; union arg argument; } name_to_func[] = { { "window-menu-label", kbfunc_menu_client_label, CWM_CONTEXT_CC, {0} }, |