From cda1a8c49889715c9e4275d2329691e7046519e4 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 12 Dec 2019 22:27:43 +0200 Subject: [PATCH] cli: fix build warning --- tools/wireplumber-cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/wireplumber-cli.c b/tools/wireplumber-cli.c index 5090c8b9..c3c378d6 100644 --- a/tools/wireplumber-cli.c +++ b/tools/wireplumber-cli.c @@ -317,7 +317,7 @@ main (gint argc, gchar **argv) else { g_autofree gchar *help = g_option_context_get_help (context, TRUE, NULL); - g_print (help); + g_print ("%s", help); return 1; }