summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2008-04-07 19:33:48 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2008-04-07 19:33:48 +0000
commit06c199e3474b9a587ee7f21a885c9d287853a756 (patch)
tree5230405446d86858daffc2de02be46e2404f1170
parente92c176d95dfa95917cef13dca177f16eca88103 (diff)
downloadrockbox-06c199e3474b9a587ee7f21a885c9d287853a756.tar.gz
rockbox-06c199e3474b9a587ee7f21a885c9d287853a756.zip
Some more debug output disabling.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17026 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/cuesheet.c2
-rw-r--r--firmware/mp3data.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index 9c23d817be..de5a258ca8 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -75,7 +75,7 @@ bool cuesheet_is_enabled(void)
75 75
76bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path) 76bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path)
77{ 77{
78 DEBUGF("look for cue file\n"); 78 /* DEBUGF("look for cue file\n"); */
79 79
80 char cuepath[MAX_PATH]; 80 char cuepath[MAX_PATH];
81 char *dot, *slash; 81 char *dot, *slash;
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index de204e04f3..bfdb098261 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -402,7 +402,7 @@ int get_mp3file_info(int fd, struct mp3info *info)
402 { 402 {
403 int i = 8; /* Where to start parsing info */ 403 int i = 8; /* Where to start parsing info */
404 404
405 DEBUGF("Xing/Info header\n"); 405 /* DEBUGF("Xing/Info header\n"); */
406 406
407 /* Remember where in the file the Xing header is */ 407 /* Remember where in the file the Xing header is */
408 info->vbr_header_pos = lseek(fd, 0, SEEK_CUR) - info->frame_size; 408 info->vbr_header_pos = lseek(fd, 0, SEEK_CUR) - info->frame_size;