From 396bc93955694eaf493f53e5e123d3396d1b76b0 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 13 Jul 2013 21:02:23 +0200 Subject: [PATCH] Fixed printf() usage in test program. Found by Cppcheck. --- test/testaudioinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testaudioinfo.c b/test/testaudioinfo.c index ff7c25b7f..a39811a2b 100644 --- a/test/testaudioinfo.c +++ b/test/testaudioinfo.c @@ -21,7 +21,7 @@ print_devices(int iscapture) printf("%s devices:\n", typestr); if (n == -1) - printf(" Driver can't detect specific devices.\n\n", typestr); + printf(" Driver can't detect specific %s devices.\n\n", typestr); else if (n == 0) printf(" No %s devices found.\n\n", typestr); else {