diff options
| -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 48eab2c17427..36fa792d3be2 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); |
