From: Dmitry V. Levin Date: Fri, 27 May 2016 01:11:40 +0000 (+0000) Subject: ioctl.c: fix typo in decoding of EVIOCSABS's parameter X-Git-Tag: v4.12~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f1559e6a95678d02bd62d21c927b8788bfaaffb;p=strace ioctl.c: fix typo in decoding of EVIOCSABS's parameter * ioctl.c (evdev_decode_number): Fix typo in printxval default value. --- 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; }