From owner-svn-src-all@freebsd.org Fri Jun 26 06:56:52 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C032198C3DD; Fri, 26 Jun 2015 06:56:52 +0000 (UTC) (envelope-from ermal.luci@gmail.com) Received: from mail-yk0-x229.google.com (mail-yk0-x229.google.com [IPv6:2607:f8b0:4002:c07::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 823621F3D; Fri, 26 Jun 2015 06:56:52 +0000 (UTC) (envelope-from ermal.luci@gmail.com) Received: by ykdy1 with SMTP id y1so52366148ykd.2; Thu, 25 Jun 2015 23:56:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=cNsv3W96rpeusYzSKnGBKIh81bmecxfJl8G9h6nyjgw=; b=k8/Xb++wDv8yLFO3FA0jXNPFMh5SqIrLDxAcI28WueAfqeqSdEmKVmTpXKyA2plLPT NXsNTH7kFhppDKsV3y8bAPnOLzCYZzO8RFRLzxk/dthORtDvUUJDttOi0QJ2PDgxfxwx EllHSoRRMYjAGsTznL77F9uG/co7KrU/2WXTLst+nFZk9jRnz3jtlOs9q3bUlnZmmsX6 5hJnNlrnP+IGwnwpYiHHIe++mW8sh/qVWG4hg9OYQ5RV/n5O6uOVSFQCHZ2Gw4OBWc6Y vAltFUNcxhP389Domnp7nL0/gTy1TsCsnWYS5tRjdCRIvGpF3OvY8T2vl/ddUs2KgVYM laXg== MIME-Version: 1.0 X-Received: by 10.129.78.130 with SMTP id c124mr145829ywb.162.1435301811451; Thu, 25 Jun 2015 23:56:51 -0700 (PDT) Received: by 10.129.83.139 with HTTP; Thu, 25 Jun 2015 23:56:51 -0700 (PDT) In-Reply-To: <201506252316.t5PNG1ZD098581@svn.freebsd.org> References: <201506252316.t5PNG1ZD098581@svn.freebsd.org> Date: Fri, 26 Jun 2015 08:56:51 +0200 Message-ID: Subject: Re: svn commit: r284863 - head/sys/net/altq From: =?UTF-8?Q?Ermal_Lu=C3=A7i?= To: "Bjoern A. Zeeb" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jun 2015 06:56:52 -0000 On Fri, Jun 26, 2015 at 1:16 AM, Bjoern A. Zeeb wrote: > Author: bz > Date: Thu Jun 25 23:16:01 2015 > New Revision: 284863 > URL: https://svnweb.freebsd.org/changeset/base/284863 > > Log: > Another attempt to make this compile on more architectures after r284777. > > Modified: > head/sys/net/altq/altq_fairq.c > > Modified: head/sys/net/altq/altq_fairq.c > > ============================================================================== > --- head/sys/net/altq/altq_fairq.c Thu Jun 25 20:46:11 2015 > (r284862) > +++ head/sys/net/altq/altq_fairq.c Thu Jun 25 23:16:01 2015 > (r284863) > @@ -742,8 +742,8 @@ fairq_pollq(struct fairq_class *cl, uint > if (bw > cl->cl_bandwidth) > *hit_limit = 1; > #ifdef ALTQ_DEBUG > - printf("BW %6lld relative to %6u %d queue %p\n", > - bw, cl->cl_bandwidth, *hit_limit, b); > + printf("BW %6ju relative to %6u %d queue %p\n", > + (uintmax_t)bw, cl->cl_bandwidth, *hit_limit, b); > #endif > } > return(m); > > Thank you. -- Ermal