diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-01-30 16:08:05 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-01-30 16:08:05 +0000 |
commit | 5fded8d7746ea67571b3e5ad0fb20bdf55bfec28 (patch) | |
tree | 49a380788f9a9bea986a2129de6698c972fec41a /sys/dev/usb | |
parent | b7433e15c3ef10d95759121d1e726ea9864da8a3 (diff) | |
download | FreeBSD-src-5fded8d7746ea67571b3e5ad0fb20bdf55bfec28.zip FreeBSD-src-5fded8d7746ea67571b3e5ad0fb20bdf55bfec28.tar.gz |
Do not unnecessarily split a string literal, because
splitting it makes it hard to grep.
Submitted by: Christoph Mallon
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/controller/xhci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c index dc4cfe9..4023ecc 100644 --- a/sys/dev/usb/controller/xhci.c +++ b/sys/dev/usb/controller/xhci.c @@ -890,8 +890,8 @@ xhci_check_transfer(struct xhci_softc *sc, struct xhci_trb *trb) */ if (td->remainder > 0) { if (td->alt_next == NULL) { - DPRINTF("short TD has no " - "alternate next\n"); + DPRINTF( + "short TD has no alternate next\n"); xhci_generic_done(xfer); break; } |