diff options
Diffstat (limited to 'audio/mixeng.c')
-rw-r--r-- | audio/mixeng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mixeng.c b/audio/mixeng.c index 14e37ae16f..6308d41004 100644 --- a/audio/mixeng.c +++ b/audio/mixeng.c @@ -243,7 +243,7 @@ void *st_rate_start (int inrate, int outrate) struct rate *rate = audio_calloc (AUDIO_FUNC, 1, sizeof (*rate)); if (!rate) { - dolog ("Could not allocate resampler (%d bytes)\n", sizeof (*rate)); + dolog ("Could not allocate resampler (%zu bytes)\n", sizeof (*rate)); return NULL; } |