Subject: Re: CVS commit: src/sys/dev/pci
To: None <source-changes@NetBSD.org>
From: Alan Barrett <apb@cequrux.com>
List: source-changes
Date: 02/10/2008 00:51:19
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)