SDL_mixer: mp3utils.c: Fixed warning

From 549461c39f0e02731fa3c7052b3201c613f68f32 Mon Sep 17 00:00:00 2001
From: Wohlstand <[EMAIL REDACTED]>
Date: Wed, 21 Dec 2022 12:24:32 +0300
Subject: [PATCH] mp3utils.c: Fixed warning

---
 src/codecs/mp3utils.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/codecs/mp3utils.c b/src/codecs/mp3utils.c
index 48c05050..2edf8da5 100644
--- a/src/codecs/mp3utils.c
+++ b/src/codecs/mp3utils.c
@@ -398,7 +398,7 @@ static size_t id3v22_parse_frame(Mix_MusicMetaTags *out_tags, struct mp3file_t *
     if (size < ID3v2_BUFFER_SIZE) {
         read_size = MP3_RWread(src, buffer, 1, size);
         if (read_size < size) {
-            SDL_Log("id3v22_parse_frame (2): Buffer size that left is too small (%u < %u)", (unsigned int)read_size, size);
+            SDL_Log("id3v22_parse_frame (2): Buffer size that left is too small (%u < %u)", (unsigned int)read_size, (unsigned int)size);
             MP3_RWseek(src, frame_begin, RW_SEEK_SET);
             return 0; /* Can't read frame data, possibly, a file size was reached */
         }
@@ -452,7 +452,7 @@ static size_t id3v2x_parse_frame(Mix_MusicMetaTags *out_tags, struct mp3file_t *
     if (size < ID3v2_BUFFER_SIZE) {
         read_size = MP3_RWread(src, buffer, 1, size);
         if (read_size < size) {
-            SDL_Log("id3v2x_parse_frame (2): Buffer size that left is too small (%u < %u)", (unsigned int)read_size, size);
+            SDL_Log("id3v2x_parse_frame (2): Buffer size that left is too small (%u < %u)", (unsigned int)read_size, (unsigned int)size);
             MP3_RWseek(src, frame_begin, RW_SEEK_SET);
             return 0; /* Can't read frame data, possibly, a file size was reached */
         }