diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-09-20 17:42:46 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-09-20 17:42:46 +0000 |
| commit | 141673945eb1c022d0c88d46e67e3d60d53fec78 (patch) | |
| tree | b675b29710f65ea281d24659a517afd3967bf271 /firmware/export | |
| parent | ad500e1063124008e2c0fc5dc666a52e09bba018 (diff) | |
| download | rockbox-141673945eb1c022d0c88d46e67e3d60d53fec78.zip rockbox-141673945eb1c022d0c88d46e67e3d60d53fec78.tar.gz rockbox-141673945eb1c022d0c88d46e67e3d60d53fec78.tar.bz2 rockbox-141673945eb1c022d0c88d46e67e3d60d53fec78.tar.xz | |
Fix typo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28126 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/debug.h b/firmware/export/debug.h index 93ebd5f..043ec26 100644 --- a/firmware/export/debug.h +++ b/firmware/export/debug.h @@ -33,7 +33,7 @@ extern void ldebugf(const char* file, int line, const char *fmt, ...) #ifdef __GNUC__ /* */ -#if (SIMULATOR) && !defined(__PCTOOL__) \ +#if defined(SIMULATOR) && !defined(__PCTOOL__) \ || ((CONFIG_PLATFORM & PLATFORM_ANDROID) && defined(DEBUG)) #define DEBUGF debugf #define LDEBUGF(...) ldebugf(__FILE__, __LINE__, __VA_ARGS__) |