diff options
author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2008-04-07 19:33:48 +0000 |
---|---|---|
committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2008-04-07 19:33:48 +0000 |
commit | 06c199e3474b9a587ee7f21a885c9d287853a756 (patch) | |
tree | 5230405446d86858daffc2de02be46e2404f1170 | |
parent | e92c176d95dfa95917cef13dca177f16eca88103 (diff) |
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.c | 2 | ||||
-rw-r--r-- | firmware/mp3data.c | 2 |
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) bool look_for_cuesheet_file(const char *trackpath, char *found_cue_path) { - DEBUGF("look for cue file\n"); + /* DEBUGF("look for cue file\n"); */ char cuepath[MAX_PATH]; 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) { int i = 8; /* Where to start parsing info */ - DEBUGF("Xing/Info header\n"); + /* DEBUGF("Xing/Info header\n"); */ /* Remember where in the file the Xing header is */ info->vbr_header_pos = lseek(fd, 0, SEEK_CUR) - info->frame_size; |