aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_usb.h
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2019-08-09 19:46:27 +0200
committerGitHub <noreply@github.com>2019-08-09 19:46:27 +0200
commitacb51638141ff960f547431757130749bc176bc0 (patch)
treee830c8658e5232d2b354d8aea0c0b8bb7448d8ed /executor/common_usb.h
parentc576290a354d07b1507bda1c36e81c8d6d481f6d (diff)
sys/linux: add basic USB CDC Ethernet descriptions (#1328)
Diffstat (limited to 'executor/common_usb.h')
-rw-r--r--executor/common_usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common_usb.h b/executor/common_usb.h
index 94d270b4b..033bae3e6 100644
--- a/executor/common_usb.h
+++ b/executor/common_usb.h
@@ -336,7 +336,7 @@ static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatil
for (ep = 0; ep < index.eps_num; ep++) {
rv = usb_fuzzer_ep_enable(fd, index.eps[ep]);
if (rv < 0) {
- debug("syz_usb_connect: usb_fuzzer_ep_enable failed with %d\n", rv);
+ debug("syz_usb_connect: usb_fuzzer_ep_enable(%d) failed with %d\n", ep, rv);
} else {
debug("syz_usb_connect: endpoint %d enabled\n", ep);
}