diff --git a/source/snd_opus.c b/source/snd_opus.c index 3238003..b263447 100644 --- a/source/snd_opus.c +++ b/source/snd_opus.c @@ -115,8 +115,8 @@ static bool S_OPUS_CodecOpenStream(snd_stream_t *stream) numstreams = op_info->stream_count; if(numstreams != 1) { - Con_Printf("More than one (%" PRIi64 ") stream in %s\n", - (long)op_info->stream_count, stream->name); + Con_Printf("More than one (%li) stream in %s\n", + numstreams, stream->name); goto fail; } diff --git a/source/snd_vorbis.c b/source/snd_vorbis.c index b6a4bd3..998b0d2 100644 --- a/source/snd_vorbis.c +++ b/source/snd_vorbis.c @@ -110,7 +110,7 @@ static bool S_VORBIS_CodecOpenStream(snd_stream_t *stream) numstreams = ov_streams(ovFile); if(numstreams != 1) { - Con_Printf("More than one (%" PRIi64 ") stream in %s.\n", + Con_Printf("More than one (%li) stream in %s.\n", numstreams, stream->name); goto fail; }