From 6851858937c1a8c5240110f4b4855ee316f141bd Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 16 Feb 2026 06:01:35 +1000 Subject: [PATCH] Fix a bug in the profiling test. --- tests/profiling/profiling.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/profiling/profiling.c b/tests/profiling/profiling.c index bb791678..dfa89a1a 100644 --- a/tests/profiling/profiling.c +++ b/tests/profiling/profiling.c @@ -63,7 +63,7 @@ ma_bool32 verify_deinterleaving_by_format(ma_format format, ma_uint32 channels) pDeinterleavedOptimized[iChannel] = ma_malloc(frameCount * ma_get_bytes_per_sample(format), NULL); } - fill_debug_frames(pInterleavedReference, frameCount, format, channels); + fill_debug_frames(pInterleavedReference, format, channels, frameCount); MA_COPY_MEMORY(pInterleavedOptimized, pInterleavedReference, frameCount * bpf);