Module Name: src Committed By: martin Date: Fri Mar 13 19:17:27 UTC 2020
Modified Files: src/sys/dev/usb: if_ure.c Log Message: Fix printf format To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/usb/if_ure.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/if_ure.c diff -u src/sys/dev/usb/if_ure.c:1.36 src/sys/dev/usb/if_ure.c:1.37 --- src/sys/dev/usb/if_ure.c:1.36 Fri Mar 13 18:17:40 2020 +++ src/sys/dev/usb/if_ure.c Fri Mar 13 19:17:27 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: if_ure.c,v 1.36 2020/03/13 18:17:40 christos Exp $ */ +/* $NetBSD: if_ure.c,v 1.37 2020/03/13 19:17:27 martin Exp $ */ /* $OpenBSD: if_ure.c,v 1.10 2018/11/02 21:32:30 jcs Exp $ */ /*- @@ -30,7 +30,7 @@ /* RealTek RTL8152/RTL8153 10/100/Gigabit USB Ethernet device */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_ure.c,v 1.36 2020/03/13 18:17:40 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ure.c,v 1.37 2020/03/13 19:17:27 martin Exp $"); #ifdef _KERNEL_OPT #include "opt_usb.h" @@ -131,7 +131,7 @@ ure_ctl(struct usbnet *un, uint8_t rw, u USETW(req.wIndex, index); USETW(req.wLength, len); - DPRINTFN(5, ("ure_ctl: rw %d, val %#04hu, index %#04hu, len %d\n", + DPRINTFN(5, ("ure_ctl: rw %d, val %04hu, index %04hu, len %d\n", rw, val, index, len)); err = usbd_do_request(un->un_udev, &req, buf); if (err) {