diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-11-03 21:20:02 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-11-03 21:20:02 +0000 |
| commit | 310346ebccbb3eff363223e2036a7450a5db0538 (patch) | |
| tree | ad13a3618953a36d3af19037f853a2a55383cd14 | |
| parent | 21d40affc530174cfb130be9508b0d68bc4695db (diff) | |
| download | rockbox-310346ebccbb3eff363223e2036a7450a5db0538.zip rockbox-310346ebccbb3eff363223e2036a7450a5db0538.tar.gz rockbox-310346ebccbb3eff363223e2036a7450a5db0538.tar.bz2 rockbox-310346ebccbb3eff363223e2036a7450a5db0538.tar.xz | |
Fix a #elif without condion (is an error with newer gcc/cpp versions).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23502 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/as3525/fmradio-i2c-as3525.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/fmradio-i2c-as3525.c b/firmware/target/arm/as3525/fmradio-i2c-as3525.c index 99b9bdf..d987938 100644 --- a/firmware/target/arm/as3525/fmradio-i2c-as3525.c +++ b/firmware/target/arm/as3525/fmradio-i2c-as3525.c @@ -49,7 +49,7 @@ #define I2C_SCL_PIN 6 #define I2C_SDA_PIN 7 -#elif +#else #error no FM I2C GPIOPIN defines #endif |