From a440195b2eee5dc192407a7b563b9f3280ba564c Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 17 Nov 2018 17:20:51 +1000 Subject: [PATCH] Small debug output tweak. --- mini_al.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini_al.h b/mini_al.h index 17812566..8743e0b8 100644 --- a/mini_al.h +++ b/mini_al.h @@ -12710,7 +12710,7 @@ mal_result mal_device_init__pulse(mal_context* pContext, mal_device_type type, c pDevice->periods = attr.maxlength / attr.tlength; #ifdef MAL_DEBUG_OUTPUT - printf("[PulseAudio] actual attr: maxlength=%d, tlength=%d, prebuf=%d, minreq=%d, fragsize=%d; bufferSizeInFrames=%d\n", attr.maxlength, attr.tlength, attr.prebuf, attr.minreq, attr.fragsize, bufferSizeInFrames); + printf("[PulseAudio] actual attr: maxlength=%d, tlength=%d, prebuf=%d, minreq=%d, fragsize=%d; pDevice->bufferSizeInFrames=%d\n", attr.maxlength, attr.tlength, attr.prebuf, attr.minreq, attr.fragsize, pDevice->bufferSizeInFrames); #endif