]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Add missing format string argument 1693/head
authorMichiel De Witte <michiel.dewitte@basalte.be>
Tue, 20 Jun 2023 09:10:54 +0000 (11:10 +0200)
committerMichiel De Witte <michiel.dewitte@basalte.be>
Tue, 20 Jun 2023 09:10:54 +0000 (11:10 +0200)
audio_jack.c

index 4218d245c6596c07bd7020e7241ca093185fc86c..abdf09d90f1e62d33df82d9c7103049f9790ad9a 100644 (file)
@@ -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);
     }