svn commit: r284863 - head/sys/net/altq

Ermal Luçi ermal.luci at gmail.com
Fri Jun 26 06:56:52 UTC 2015


On Fri, Jun 26, 2015 at 1:16 AM, Bjoern A. Zeeb <bz at freebsd.org> 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


More information about the svn-src-head mailing list