summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-11 22:08:23 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-11 22:08:23 +0000
commit102665958a8258d598822c78c1a80804939ff933 (patch)
treed05d5f71604a4337968cd8cf23df83c5854f5905
parent7a8f398b6f0a8537c01d502c49f966e13ffda9b4 (diff)
downloadrockbox-102665958a8258d598822c78c1a80804939ff933.tar.gz
rockbox-102665958a8258d598822c78c1a80804939ff933.zip
Removed warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1676 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/blank.c2
-rw-r--r--uisimulator/win32/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/blank.c b/apps/recorder/blank.c
index 2bf345115b..835420f63b 100644
--- a/apps/recorder/blank.c
+++ b/apps/recorder/blank.c
@@ -35,7 +35,7 @@
35 35
36void blank(void) 36void blank(void)
37{ 37{
38 int w, h, b; 38 int w, h;
39 char *off = "[Off] to stop"; 39 char *off = "[Off] to stop";
40 int len = strlen(SS_TITLE); 40 int len = strlen(SS_TITLE);
41 41
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index 24ca458fce..d9fd690462 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -68,7 +68,7 @@ APPS = main.c tree.c menu.c credits.c main_menu.c\
68MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c 68MENUS = games_menu.c screensavers_menu.c settings_menu.c sound_menu.c
69 69
70ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 70ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
71 APPS += tetris.c sokoban.c bounce.c boxes.c icons.c bmp.c widgets.c 71 APPS += tetris.c sokoban.c blank.c bounce.c boxes.c icons.c bmp.c widgets.c
72endif 72endif
73 73
74SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ 74SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \