summaryrefslogtreecommitdiff
path: root/app/cwm
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2016-12-02 16:50:20 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2016-12-02 16:50:20 +0000
commit69046bdddc44a081c52f5462c5f6e36bcbc79653 (patch)
tree7e8587f93d17f3409df19b86cd4ac66b89b099dd /app/cwm
parent3f5d41aa793c55f15466349b3c4c27ff25b4bb9a (diff)
use the correct type
Diffstat (limited to 'app/cwm')
-rw-r--r--app/cwm/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c
index 522c23980..776d8007f 100644
--- a/app/cwm/conf.c
+++ b/app/cwm/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.226 2016/12/01 18:17:52 okan Exp $
+ * $OpenBSD: conf.c,v 1.227 2016/12/02 16:50:19 okan Exp $
*/
#include <sys/types.h>
@@ -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} },