From owner-svn-src-head@FreeBSD.ORG Fri May 3 10:13:30 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 409D9C1F; Fri, 3 May 2013 10:13:30 +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 33AEA15A0; Fri, 3 May 2013 10:13:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r43ADUXh004612; Fri, 3 May 2013 10:13:30 GMT (envelope-from hselasky@svn.freebsd.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r43ADUg4004611; Fri, 3 May 2013 10:13:30 GMT (envelope-from hselasky@svn.freebsd.org) Message-Id: <201305031013.r43ADUg4004611@svn.freebsd.org> From: Hans Petter Selasky Date: Fri, 3 May 2013 10:13:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r250205 - head/sys/dev/usb 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: Fri, 03 May 2013 10:13:30 -0000 Author: hselasky Date: Fri May 3 10:13:29 2013 New Revision: 250205 URL: http://svnweb.freebsd.org/changeset/base/250205 Log: Always put space before the comma before ##__VA_ARGS__ due to subtle compiler differences. Modified: head/sys/dev/usb/usb_debug.h Modified: head/sys/dev/usb/usb_debug.h ============================================================================== --- head/sys/dev/usb/usb_debug.h Fri May 3 09:23:06 2013 (r250204) +++ head/sys/dev/usb/usb_debug.h Fri May 3 10:13:29 2013 (r250205) @@ -38,7 +38,7 @@ extern int usb_debug; #define DPRINTFN(n,fmt,...) do { \ if ((USB_DEBUG_VAR) >= (n)) { \ printf("%s: " fmt, \ - __FUNCTION__,## __VA_ARGS__); \ + __FUNCTION__ ,##__VA_ARGS__); \ } \ } while (0) #define DPRINTF(...) DPRINTFN(1, __VA_ARGS__)