summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/mp3data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index a55d052e1b..07227e7133 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -35,7 +35,7 @@
#include "mp3data.h"
#include "file.h"
-#define DEBUG_VERBOSE
+#undef DEBUG_VERBOSE
#define BYTES2INT(b1,b2,b3,b4) (((b1 & 0xFF) << (3*8)) | \
((b2 & 0xFF) << (2*8)) | \
@@ -658,7 +658,7 @@ int create_xing_header(int fd, int startpos, int filesize,
/* Advance from the last seek point to this one */
for(j = 0;j < pos - last_pos;j++)
{
- DEBUGF("fpos: %x frame no: %x ", filepos, x++);
+ DEBUGF("fpos: %x frame no: %x\n", filepos, x++);
header = buf_find_next_frame(fd, &bytes, -1, header);
mp3headerinfo(&info, header);
buf_seek(fd, info.frame_size-4);