From 343fdd71ef9cdaee437fa985c36371acb0d97ebd Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 2 May 2006 14:14:04 +0000 Subject: [PATCH] (svn r4687) - Backport from trunk (r4674): Codechange: use correct parameter order for allocating sound file memory --- sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound.c b/sound.c index 46b319cdc2..4e3a463a69 100644 --- a/sound.c +++ b/sound.c @@ -35,7 +35,7 @@ static void OpenBankFile(const char *filename) FioOpenFile(SOUND_SLOT, filename); count = FioReadDword() / 8; - fe = calloc(sizeof(*fe), count); + fe = calloc(count, sizeof(*fe)); if (fe == NULL) { _file_count = 0;