From acb51638141ff960f547431757130749bc176bc0 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Fri, 9 Aug 2019 19:46:27 +0200 Subject: sys/linux: add basic USB CDC Ethernet descriptions (#1328) --- executor/common_usb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/common_usb.h') 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); } -- cgit mrf-deployment