Skip to content

Commit

Permalink
Fix printf format
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Jul 15, 2024
1 parent c50ccd1 commit d2c7e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/snd_mix.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static void S_UpdateFilter(filter_t *filter, int M, float f_c)
filter->kernel = (float *) calloc(filter->kernelsize, sizeof(float));

if (!filter->memory || !filter->kernel)
Sys_Error ("S_UpdateFilter: out of memory (%d bytes)", filter->kernelsize * sizeof (float));
Sys_Error ("S_UpdateFilter: out of memory (%" SDL_PRIu64 " bytes)", (uint64_t)(filter->kernelsize * sizeof (float)));

S_MakeBlackmanWindowKernel(filter->kernel, M, f_c);
}
Expand Down

0 comments on commit d2c7e99

Please sign in to comment.