Commit 2d17aeee authored by David Gibson's avatar David Gibson

wwviaudio: Use correct C99 format specifiers for uint64_t

This fixes a warning.
Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
parent 03509101
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <inttypes.h>
#define WWVIAUDIO_DEFINE_GLOBALS #define WWVIAUDIO_DEFINE_GLOBALS
#include "wwviaudio.h" #include "wwviaudio.h"
...@@ -147,8 +148,8 @@ int wwviaudio_read_ogg_clip(int clipnum, char *filename) ...@@ -147,8 +148,8 @@ int wwviaudio_read_ogg_clip(int clipnum, char *filename)
rc = ogg_to_pcm(filebuf, &clip[clipnum].sample, &samplesize, rc = ogg_to_pcm(filebuf, &clip[clipnum].sample, &samplesize,
&sample_rate, &nchannels, &nframes); &sample_rate, &nchannels, &nframes);
if (clip[clipnum].sample == NULL) { if (clip[clipnum].sample == NULL) {
printf("Can't get memory for sound data for %llu frames in %s\n", printf("Can't get memory for sound data for %"PRIu64
nframes, filebuf); " frames in %s\n", nframes, filebuf);
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment