Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src/sys/dev/pci



On Sat, 09 Feb 2008, Hernani Marques Madeira wrote:
> /usr/src/sys/dev/pci/if_iwn.c:2581: warning: format '%llu' expects
> type 'long long unsigned int', but argument 3 has type '__uint64_t'

The format should use "%"PRIu64 instead of "%llu".
Similarly, in the next argument to the same invocation of DPRINTF(),
the format used to print a uint32_t value should be "%"PRIu32,
not "%u".

--apb (Alan Barrett)



Home | Main Index | Thread Index | Old Index