From 160228210ba05be788d3537ee64e269882a66aa9 Mon Sep 17 00:00:00 2001 From: okan Date: Sat, 14 Jun 2008 21:59:09 +0000 Subject: [PATCH] unbreak --- conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.c b/conf.c index 8b43668..4d1577d 100644 --- a/conf.c +++ b/conf.c @@ -434,7 +434,7 @@ conf_mousebind(struct conf *c, char *name, char *binding) if (strchr(name, '-') == NULL) substring = name; - current_binding->button = strtonum(substring); + current_binding->button = strtonum(substring, 1, 3, &errstr); if (errstr) warnx("number of buttons is %s: %s", errstr, substring);