aboutsummaryrefslogtreecommitdiff
path: root/wave.c
diff options
context:
space:
mode:
Diffstat (limited to 'wave.c')
-rw-r--r--wave.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wave.c b/wave.c
index ace469a..65d1a22 100644
--- a/wave.c
+++ b/wave.c
@@ -177,7 +177,7 @@ static int readHeader(waveFile file) {
data = readShort(file); /* 20 - what is the audio format? 1 for PCM = Pulse
Code Modulation */
if (data != 1) {
- fprintf(stderr, "Only PCM wave files are supported\n");
+ fprintf(stderr, "Only PCM wave files are supported (not %d)\n", data);
return 0;
}
file->numChannels =