From ab5a9eec534797649b73cb54614b258058a0b0c1 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 21 Aug 2023 10:02:43 +0300 Subject: [PATCH] engine: soundlib: snd_mp3: fix extra-format-args --- engine/common/soundlib/snd_mp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/soundlib/snd_mp3.c b/engine/common/soundlib/snd_mp3.c index 15adce8b..9d3d15fb 100644 --- a/engine/common/soundlib/snd_mp3.c +++ b/engine/common/soundlib/snd_mp3.c @@ -129,7 +129,7 @@ static qboolean Sound_ParseID3Tag( const byte *buffer, fs_offset_t filesize ) { // old id3v1 header found if( CHECK_IDENT( header->ident, 'T', 'A', 'G' )) - Con_Printf( S_ERROR "Sound_ParseID3Tag: ID3v1 is not supported! Convert to ID3v2.4!\n", header->major_ver ); + Con_Printf( S_ERROR "Sound_ParseID3Tag: ID3v1 is not supported! Convert to ID3v2.4!\n" ); return true; // missing tag header is not an error }