diff options
author | jmg <jmg@FreeBSD.org> | 2003-07-04 23:11:13 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2003-07-04 23:11:13 +0000 |
commit | f8681630d97120c8d3c21a56540956b3cf648903 (patch) | |
tree | f67cbf5728255a1b12a321424d2a6fb4f240fbb2 /sys/dev/usb/usbdi.c | |
parent | 1058b918f9b0a016117ef500f120c5e1b94c04a9 (diff) | |
download | FreeBSD-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.c | 2 |
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); |