From 1f1559e6a95678d02bd62d21c927b8788bfaaffb Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Fri, 27 May 2016 01:11:40 +0000 Subject: [PATCH] ioctl.c: fix typo in decoding of EVIOCSABS's parameter * ioctl.c (evdev_decode_number): Fix typo in printxval default value. --- ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioctl.c b/ioctl.c index 495fb3c7..e4b20d97 100644 --- a/ioctl.c +++ b/ioctl.c @@ -91,7 +91,7 @@ evdev_decode_number(const unsigned int code) if (_IOC_DIR(code) == _IOC_WRITE) { if (nr >= 0xc0 && nr <= 0xc0 + 0x3f) { tprints("EVIOCSABS("); - printxval(evdev_abs, nr - 0xc0, "EV_???"); + printxval(evdev_abs, nr - 0xc0, "ABS_???"); tprints(")"); return 1; } -- 2.50.1