Skip to content
Snippets Groups Projects
Commit 47dbd1f3 authored by Fabrice Bellard's avatar Fabrice Bellard
Browse files

error display fix (malc)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2068 c046a42c-6fe2-441c-8c8c-71466251a162
parent d07edbfa
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,8 @@ int wav_start_capture (CaptureState *s, const char *path, int freq,
}
if (nchannels != 1 && nchannels != 2) {
term_printf ("incorrect channel count %d, must be 1 or 2\n", bits);
term_printf ("incorrect channel count %d, must be 1 or 2\n",
nchannels);
return -1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment