Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed printf() usage in test program.
Browse files Browse the repository at this point in the history
Found by Cppcheck.
  • Loading branch information
philippwiesemann committed Jul 13, 2013
1 parent d708b3a commit 83cf217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testaudioinfo.c
Expand Up @@ -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 {
Expand Down

0 comments on commit 83cf217

Please sign in to comment.