From ef01dc541e2218d2c1226f2c5235ae4ddcdd14e7 Mon Sep 17 00:00:00 2001 From: Michiel De Witte Date: Tue, 20 Jun 2023 11:10:54 +0200 Subject: [PATCH] Add missing format string argument --- audio_jack.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/audio_jack.c b/audio_jack.c index 4218d245..abdf09d9 100644 --- a/audio_jack.c +++ b/audio_jack.c @@ -298,7 +298,8 @@ static int jack_init(__attribute__((unused)) int argc, __attribute__((unused)) c } while (port_list[i++] != NULL) { inform( - "Additional matching port %s found. Check that the connections are what you intended."); + "Additional matching port %s found. Check that the connections are what you intended.", + port_list[i-1]); } jack_free(port_list); } -- 2.47.2