From 30a18d58780237d6dea16a4ac31382d36bfff387 Mon Sep 17 00:00:00 2001 From: Gianni Ceccarelli Date: Fri, 10 Aug 2012 09:59:44 +0000 Subject: fix error message Thanks to Lee from Albuquerque Laser Engraving for the report --- src/evdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evdev.c b/src/evdev.c index 77516f3..71fa82b 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -393,7 +393,7 @@ SetRemapOption(InputInfoPtr pInfo,const char* name,EvdevPtr ev) continue; } if (value < MIN_KEYCODE || value > 255) { - xf86Msg(X_ERROR,"%s: output value %ld out of range for option \"event_key_remap\", ignoring.\n",pInfo->name,code); + xf86Msg(X_ERROR,"%s: output value %ld out of range for option \"event_key_remap\", ignoring.\n",pInfo->name,value); continue; } xf86Msg(X_INFO,"%s: remapping %ld into %ld.\n",pInfo->name,code,value); -- cgit v1.2.3