SDL_mixer: Fixed warning: calloc-transposed-args

From 8e6765eda80bf2497d97ae377e9932587c415276 Mon Sep 17 00:00:00 2001
From: Petar Popovic <[EMAIL REDACTED]>
Date: Sat, 26 Jul 2025 16:36:30 +0200
Subject: [PATCH] Fixed warning: calloc-transposed-args

---
 src/decoder_wav.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/decoder_wav.c b/src/decoder_wav.c
index 467c9a72..2917928d 100644
--- a/src/decoder_wav.c
+++ b/src/decoder_wav.c
@@ -1381,7 +1381,7 @@ static bool SDLCALL WAV_init_track(void *audio_userdata, SDL_IOStream *io, const
         }
 
         state->output.size = state->info->samplesperblock * state->info->channels;
-        state->output.data = (Sint16 *)SDL_calloc(sizeof(Sint16), state->output.size);
+        state->output.data = (Sint16 *)SDL_calloc(state->output.size, sizeof(Sint16));
         if (!state->output.data) {
             SDL_free(state->block.data);
             SDL_free(state->cstate);