From owner-svn-src-head@FreeBSD.ORG Wed Jan 30 16:08:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B4B14C50; Wed, 30 Jan 2013 16:08:06 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 90459356; Wed, 30 Jan 2013 16:08:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0UG86xS095856; Wed, 30 Jan 2013 16:08:06 GMT (envelope-from hselasky@svn.freebsd.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0UG86G6095855; Wed, 30 Jan 2013 16:08:06 GMT (envelope-from hselasky@svn.freebsd.org) Message-Id: <201301301608.r0UG86G6095855@svn.freebsd.org> From: Hans Petter Selasky Date: Wed, 30 Jan 2013 16:08:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246126 - head/sys/dev/usb/controller X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Jan 2013 16:08:06 -0000 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; }