fix long/int64 errors

master
an 2019-12-12 17:19:56 -05:00
parent 4a5b268e2e
commit eede3d0586
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}