From owner-svn-src-head@FreeBSD.ORG Fri Dec 6 22:13:52 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B4302C5; Fri, 6 Dec 2013 22:13:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8751F15E4; Fri, 6 Dec 2013 22:13:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB6MDqX5052043; Fri, 6 Dec 2013 22:13:52 GMT (envelope-from hselasky@svn.freebsd.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB6MDqnM052042; Fri, 6 Dec 2013 22:13:52 GMT (envelope-from hselasky@svn.freebsd.org) Message-Id: <201312062213.rB6MDqnM052042@svn.freebsd.org> From: Hans Petter Selasky Date: Fri, 6 Dec 2013 22:13:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r259046 - head/sys/dev/usb/wlan 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.17 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, 06 Dec 2013 22:13:52 -0000 Author: hselasky Date: Fri Dec 6 22:13:51 2013 New Revision: 259046 URL: http://svnweb.freebsd.org/changeset/base/259046 Log: Fix compilation when the "USB_DEBUG" option is set. Modified: head/sys/dev/usb/wlan/if_run.c Modified: head/sys/dev/usb/wlan/if_run.c ============================================================================== --- head/sys/dev/usb/wlan/if_run.c Fri Dec 6 21:44:13 2013 (r259045) +++ head/sys/dev/usb/wlan/if_run.c Fri Dec 6 22:13:51 2013 (r259046) @@ -3230,7 +3230,7 @@ run_tx(struct run_softc *sc, struct mbuf DPRINTFN(8, "sending data frame len=%d rate=%d qid=%d\n", m->m_pkthdr.len + (int)(sizeof(struct rt2870_txd) + - sizeof(struct rt2870_txwi)), rt2860_rates[ridx].rate, qid); + sizeof(struct rt2860_txwi)), rt2860_rates[ridx].rate, qid); return (0); }