Date: Wed, 30 Jan 2013 16:08:06 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246126 - head/sys/dev/usb/controller Message-ID: <201301301608.r0UG86G6095855@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301301608.r0UG86G6095855>