From: Michiel De Witte Date: Tue, 20 Jun 2023 09:10:54 +0000 (+0200) Subject: Add missing format string argument X-Git-Tag: 4.3~1^2~44^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1693%2Fhead;p=thirdparty%2Fshairport-sync.git Add missing format string argument --- 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); }