Skip to content
Snippets Groups Projects
Commit f75d06a9 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry
Browse files

Fix some printf format warnings in the examples.

parent bc1985a1
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ static void verify_seek(OggOpusFile *_of,opus_int64 _byte_offset,
duration=op_pcm_total(_of,li);
if(pcm_offset+nsamples>duration){
fprintf(stderr,"\nPCM data after seek exceeded link duration: "
"limit %li, got %li.\n",duration,pcm_offset+nsamples);
"limit %li, got %li.\n",(long)duration,(long)(pcm_offset+nsamples));
nfailures++;
}
nchannels=op_channel_count(_of,li);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment