forked from len0rd/rockbox
Redo r21460 and r21462 so that it doesn't introduce a new #define. Patch by Jeffrey Goode, taken from FS#10366.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21467 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
67c86a76d9
commit
659425f23e
2 changed files with 3 additions and 15 deletions
|
|
@ -34,12 +34,6 @@
|
|||
/*#define LOGF_ENABLE*/
|
||||
#include "logf.h"
|
||||
|
||||
#ifdef SIMULATOR
|
||||
#define LOGFQUEUE logf
|
||||
#else
|
||||
#define LOGFQUEUE(...)
|
||||
#endif
|
||||
|
||||
struct file
|
||||
{
|
||||
int fd;
|
||||
|
|
@ -353,7 +347,7 @@ long read_vorbis_tags(int fd, struct mp3entry *id3,
|
|||
return 0;
|
||||
}
|
||||
|
||||
LOGFQUEUE("Vorbis comment %d: %s=%s", i, name, id3->path);
|
||||
logf("Vorbis comment %d: %s=%s", i, name, id3->path);
|
||||
len = parse_tag(name, id3->path, id3, buf, buf_remaining,
|
||||
TAGTYPE_VORBIS);
|
||||
buf += len;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue