Module Name:    src
Committed By:   skrll
Date:           Sun Feb  1 13:09:15 UTC 2015

Modified Files:
        src/sys/dev/usb [nick-nhusb]: usbdi.c

Log Message:
Remove newline character in USBHIST_LOG format


To generate a diff of this commit:
cvs rdiff -u -r1.162.2.9 -r1.162.2.10 src/sys/dev/usb/usbdi.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/usbdi.c
diff -u src/sys/dev/usb/usbdi.c:1.162.2.9 src/sys/dev/usb/usbdi.c:1.162.2.10
--- src/sys/dev/usb/usbdi.c:1.162.2.9	Fri Dec  5 09:37:50 2014
+++ src/sys/dev/usb/usbdi.c	Sun Feb  1 13:09:15 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: usbdi.c,v 1.162.2.9 2014/12/05 09:37:50 skrll Exp $	*/
+/*	$NetBSD: usbdi.c,v 1.162.2.10 2015/02/01 13:09:15 skrll Exp $	*/
 
 /*
  * Copyright (c) 1998, 2012 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.162.2.9 2014/12/05 09:37:50 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.162.2.10 2015/02/01 13:09:15 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -83,7 +83,7 @@ usbd_dump_iface(struct usbd_interface *i
 {
 	USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
 
-	USBHIST_LOG(usbdebug, "iface %p\n", iface, 0, 0, 0);
+	USBHIST_LOG(usbdebug, "iface %p", iface, 0, 0, 0);
 	if (iface == NULL)
 		return;
 	USBHIST_LOG(usbdebug, "     device = %p idesc = %p index = %d",

Reply via email to