Author: hselasky
Date: Wed Jan 30 16:08:05 2013
New Revision: 246126
URL: http://svnweb.freebsd.org/changeset/base/246126

Log:
  Do not unnecessarily split a string literal, because
  splitting it makes it hard to grep.
  
  Submitted by: Christoph Mallon

Modified:
  head/sys/dev/usb/controller/xhci.c

Modified: head/sys/dev/usb/controller/xhci.c
==============================================================================
--- head/sys/dev/usb/controller/xhci.c  Wed Jan 30 16:05:54 2013        
(r246125)
+++ head/sys/dev/usb/controller/xhci.c  Wed Jan 30 16:08:05 2013        
(r246126)
@@ -890,8 +890,8 @@ xhci_check_transfer(struct xhci_softc *s
                         */
                        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;
                                }
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to