summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2017-12-06 13:45:58 +1300
committerRobert Ancell <robert.ancell@canonical.com>2017-12-06 13:45:58 +1300
commit9f671ca77b3ef4b219aae77e21b034afc8e8a1b4 (patch)
treeb0354b3d1b4a9d342d8de06a4eeb1c0d9407b2a5
parent84087213f1d06fdefb29d2a3eba8fc8c30c1ba93 (diff)
downloadlibgnome-volume-control-9f671ca77b3ef4b219aae77e21b034afc8e8a1b4.tar.gz
Fix printf without supplied argument
-rw-r--r--test-audio-device-selection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-audio-device-selection.c b/test-audio-device-selection.c
index 294c0f7..b276a8c 100644
--- a/test-audio-device-selection.c
+++ b/test-audio-device-selection.c
@@ -41,7 +41,7 @@ audio_selection_needed (GvcMixerControl *volume,
args[n] = NULL;
g_print ("+++ Audio selection needed for id %d\n", id);
- g_print (" Choices are: %s\n");
+ g_print (" Choices are:\n");
for (i = 0; args[i] != NULL; i++)
g_print (" %d. %s\n", i + 1, args[i]);