From 2d17aeeecc0ae1f16398960bd41a2e7047e57c60 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Thu, 17 Nov 2016 23:23:34 +1100 Subject: [PATCH] wwviaudio: Use correct C99 format specifiers for uint64_t This fixes a warning. Signed-off-by: David Gibson --- ccan/wwviaudio/wwviaudio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.39.2