summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-11-20 02:51:10 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-11-20 02:51:10 +0000
commit36deb0a315c10bc3930e7a9b7518da9e7fe620eb (patch)
treee044d87da6348e5e3bf06507ed39f848e0d784e1 /apps
parent45fc5bac2461ac31e4bc5a3a650dde4977e7c6f8 (diff)
downloadrockbox-36deb0a315c10bc3930e7a9b7518da9e7fe620eb.tar.gz
rockbox-36deb0a315c10bc3930e7a9b7518da9e7fe620eb.zip
Fix warning on new gcc for checking value or truth of undefined _WIN32 and MIPS.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23670 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libtremor/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libtremor/os.h b/apps/codecs/libtremor/os.h
index bb4b867e3d..bafcaedb62 100644
--- a/apps/codecs/libtremor/os.h
+++ b/apps/codecs/libtremor/os.h
@@ -25,7 +25,7 @@
25 25
26# ifdef __GNUC__ 26# ifdef __GNUC__
27# define STIN static inline 27# define STIN static inline
28# elif _WIN32 28# elif defined(_WIN32)
29# define STIN static __inline__ 29# define STIN static __inline__
30# endif 30# endif
31#else 31#else