summaryrefslogtreecommitdiff
path: root/apps/codecs/aiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/aiff.c')
-rw-r--r--apps/codecs/aiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/aiff.c b/apps/codecs/aiff.c
index 7cb471c432..e154bce583 100644
--- a/apps/codecs/aiff.c
+++ b/apps/codecs/aiff.c
@@ -112,7 +112,7 @@ next_track:
112 sample_size = ((buf[14]<<8)|buf[15]); 112 sample_size = ((buf[14]<<8)|buf[15]);
113 /* sample_rate (don't use last 4 bytes, only integer fs) */ 113 /* sample_rate (don't use last 4 bytes, only integer fs) */
114 if (buf[16] != 0x40) { 114 if (buf[16] != 0x40) {
115 DEBUGF("CODEC_ERROR: weird sampling rate (no @)\n", i); 115 DEBUGF("CODEC_ERROR: weird sampling rate (no @)\n");
116 i = CODEC_ERROR; 116 i = CODEC_ERROR;
117 goto done; 117 goto done;
118 } 118 }