Current-Users archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: sys/netinet6/in6_ifattach.c expects int but is size_t
David Laight wrote:
> On Thu, Aug 13, 2009 at 11:21:42PM -0500, reed%reedmedia.net@localhost wrote:
>> Building HEAD failed on my amd64 system (using build.sh).
>>
>> cc1: warnings being treated as errors
>> /usr/src/sys/netinet6/in6_ifattach.c: In function 'getifp':
>> /usr/src/sys/netinet6/in6_ifattach.c:903: warning: format '%d' expects
>> type 'int', but argument 4 has type 'size_t'
>>
>> Here is my patch:
>>
>> - printf("%s: ifindex %d >= limit %d\n", __func__, ifindex,
>> + printf("%s: ifindex %d >= limit %lu\n", __func__, ifindex,
>
> Needs to be %zu (or %zd if you want an implicit (effective) cast to
> signed!).
>
> David
>
Module Name: src
Committed By: cegger
Date: Thu Aug 13 09:04:03 UTC 2009
Modified Files:
src/sys/netinet6: in6_ifattach.c
Log Message:
buildfix: if_indexlim is of type size_t
To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/sys/netinet6/in6_ifattach.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index