Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Fix printf format



details:   https://anonhg.NetBSD.org/src/rev/fdebaf96581f
branches:  trunk
changeset: 745834:fdebaf96581f
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Mar 13 19:17:27 2020 +0000

description:
Fix printf format

diffstat:

 sys/dev/usb/if_ure.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1e1d92ffd1d6 -r fdebaf96581f sys/dev/usb/if_ure.c
--- a/sys/dev/usb/if_ure.c      Fri Mar 13 18:57:49 2020 +0000
+++ b/sys/dev/usb/if_ure.c      Fri Mar 13 19:17:27 2020 +0000
@@ -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 @@
        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) {



Home | Main Index | Thread Index | Old Index