From: David Gibson Date: Thu, 17 Nov 2016 12:23:34 +0000 (+1100) Subject: wwviaudio: Use correct C99 format specifiers for uint64_t X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=2d17aeeecc0ae1f16398960bd41a2e7047e57c60;ds=sidebyside wwviaudio: Use correct C99 format specifiers for uint64_t This fixes a warning. Signed-off-by: David Gibson --- diff --git a/ccan/wwviaudio/wwviaudio.c b/ccan/wwviaudio/wwviaudio.c index 5870411a..d6fabfbd 100644 --- a/ccan/wwviaudio/wwviaudio.c +++ b/ccan/wwviaudio/wwviaudio.c @@ -29,6 +29,7 @@ #include #include #include +#include #define WWVIAUDIO_DEFINE_GLOBALS #include "wwviaudio.h" @@ -147,8 +148,8 @@ int wwviaudio_read_ogg_clip(int clipnum, char *filename) rc = ogg_to_pcm(filebuf, &clip[clipnum].sample, &samplesize, &sample_rate, &nchannels, &nframes); if (clip[clipnum].sample == NULL) { - printf("Can't get memory for sound data for %llu frames in %s\n", - nframes, filebuf); + printf("Can't get memory for sound data for %"PRIu64 + " frames in %s\n", nframes, filebuf); goto error; }