summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-04-13 15:05:46 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-04-13 15:05:46 +0000
commitd5304e5af0ac312613ffb0d1a1aad23446ecd39a (patch)
tree65390eebf92cb73f2ddd3092e78b95aa59820b43
parentdbea94f33aa62f72bd93ab92b993d6051431a0e7 (diff)
downloadrockbox-d5304e5af0ac312613ffb0d1a1aad23446ecd39a.tar.gz
rockbox-d5304e5af0ac312613ffb0d1a1aad23446ecd39a.zip
Changed some debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3547 a1c6a512-1295-4272-9138-f99709370657
-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);