summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-11 12:45:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-11 12:45:06 +0000
commit2ba9b895aafef38bf0bed064d5356328a926d431 (patch)
treee6b9bd09ec02c62c725aea17eb5184fe541e4179
parentfa2669667b142663045cd50e8972d8ed7d51f8b1 (diff)
downloadrockbox-2ba9b895aafef38bf0bed064d5356328a926d431.tar.gz
rockbox-2ba9b895aafef38bf0bed064d5356328a926d431.zip
moved a #endif to stop compiler warnings for uisim on Linux
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@84 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/lcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/lcd.h b/firmware/lcd.h
index 449adba57d..cd65925e61 100644
--- a/firmware/lcd.h
+++ b/firmware/lcd.h
@@ -299,8 +299,6 @@ extern void lcd_pattern (int which,char const *pattern,int count);
299static inline void lcd_goto (int x,int y) 299static inline void lcd_goto (int x,int y)
300 { lcd_instruction (LCD_CURSOR(x,y)); } 300 { lcd_instruction (LCD_CURSOR(x,y)); }
301 301
302#endif
303
304/*** BACKLIGHT ***/ 302/*** BACKLIGHT ***/
305 303
306static inline void lcd_toggle_backlight (void) 304static inline void lcd_toggle_backlight (void)
@@ -314,4 +312,6 @@ static inline void lcd_turn_off_backlight (void)
314 312
315/*** ICONS ***/ 313/*** ICONS ***/
316 314
315#endif /* HAVE_LCD_CHARCELLS */
316
317#endif 317#endif