diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2001-04-17 15:00:03 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2001-04-17 15:00:03 +0000 |
commit | af860f74914ec8b1f6827a1743e681bddb960bbb (patch) | |
tree | 0009827191f19232ba85ec08f19f4d6b1dfeda8f /usr.bin/usbhidctl | |
parent | 36a5c45998a1f3ba8fd9cba4f632eb737ac26c4d (diff) | |
download | FreeBSD-src-af860f74914ec8b1f6827a1743e681bddb960bbb.zip FreeBSD-src-af860f74914ec8b1f6827a1743e681bddb960bbb.tar.gz |
Remove a bogus %s from a printf.
Submitted by: kris
Diffstat (limited to 'usr.bin/usbhidctl')
-rw-r--r-- | usr.bin/usbhidctl/usbhid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/usbhidctl/usbhid.c b/usr.bin/usbhidctl/usbhid.c index 48eab2c..36fa792 100644 --- a/usr.bin/usbhidctl/usbhid.c +++ b/usr.bin/usbhidctl/usbhid.c @@ -148,7 +148,7 @@ dumpitems(report_desc_t r) } hid_end_parse(d); size = hid_report_size(r, 0, hid_input); - printf("Total input size %s%d bytes\n", size); + printf("Total input size %d bytes\n", size); size = hid_report_size(r, 0, hid_output); printf("Total output size %d bytes\n", size); |