summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Meyer <calpefrosch@rockbox.org>2002-05-06 11:12:07 +0000
committerStefan Meyer <calpefrosch@rockbox.org>2002-05-06 11:12:07 +0000
commit6c25733946c6da5524d2a89bc70ed41f13384cb0 (patch)
tree885fff0bc5f4a95fa221102d3bc09e75b12c988b
parentee77969109b2b7493df2e393f69816b1c61d32ef (diff)
downloadrockbox-6c25733946c6da5524d2a89bc70ed41f13384cb0.tar.gz
rockbox-6c25733946c6da5524d2a89bc70ed41f13384cb0.zip
missing #define for VC++
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@471 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/debug.h b/firmware/debug.h
index adedfd9546..0f6b1eed64 100644
--- a/firmware/debug.h
+++ b/firmware/debug.h
@@ -23,7 +23,7 @@ extern void debugf(char* fmt,...);
#ifdef __GNUC__
-/* GCC handles ellipses in macros, which
+/* GCC handles ellipses in macros, which
means we can avoid the call completely */
#ifdef DEBUG
#define DEBUGF(fmt,args...) debugf(fmt, ## args)
@@ -33,7 +33,7 @@ extern void debugf(char* fmt,...);
#else
-void DEBUGF debugf
+#define DEBUGF debugf
#endif /* GCC */