summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbdi.c
diff options
context:
space:
mode:
authorjmg <jmg@FreeBSD.org>2003-07-04 23:11:13 +0000
committerjmg <jmg@FreeBSD.org>2003-07-04 23:11:13 +0000
commitf8681630d97120c8d3c21a56540956b3cf648903 (patch)
treef67cbf5728255a1b12a321424d2a6fb4f240fbb2 /sys/dev/usb/usbdi.c
parent1058b918f9b0a016117ef500f120c5e1b94c04a9 (diff)
downloadFreeBSD-src-f8681630d97120c8d3c21a56540956b3cf648903.zip
FreeBSD-src-f8681630d97120c8d3c21a56540956b3cf648903.tar.gz
remove \n at end of panic strings. They are added by the call to panic.
This brings us more in line with Net/OpenBSD Obtained from: Net/OpenBSD
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r--sys/dev/usb/usbdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c
index 8ecc1ac..5991fd6 100644
--- a/sys/dev/usb/usbdi.c
+++ b/sys/dev/usb/usbdi.c
@@ -337,7 +337,7 @@ usbd_transfer(usbd_xfer_handle xfer)
s = splusb();
if (!xfer->done) {
if (pipe->device->bus->use_polling)
- panic("usbd_transfer: not done\n");
+ panic("usbd_transfer: not done");
tsleep(xfer, PRIBIO, "usbsyn", 0);
}
splx(s);
OpenPOWER on IntegriCloud