diff options
Diffstat (limited to 'src/evdev.c')
-rw-r--r-- | src/evdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/evdev.c b/src/evdev.c index 6e9c79d..9a5c6d4 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -891,13 +891,13 @@ EvdevAddAbsClass(DeviceIntPtr device) if (ioctl(pInfo->fd, EVIOCGABS(ABS_X), &absinfo_x) < 0) { - xf86Msg(X_ERROR, "ioctl EVIOCGABS failed: %s\n", strerror(errno)); + xf86Msg(X_ERROR, "ioctl EVIOCGABS ABS_X failed: %s\n", strerror(errno)); return !Success; } if (ioctl(pInfo->fd, EVIOCGABS(ABS_Y), &absinfo_y) < 0) { - xf86Msg(X_ERROR, "ioctl EVIOCGABS failed: %s\n", strerror(errno)); + xf86Msg(X_ERROR, "ioctl EVIOCGABS ABS_Y failed: %s\n", strerror(errno)); return !Success; } |