summaryrefslogtreecommitdiff
path: root/apps/gui/list.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-12-05 23:37:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-12-05 23:37:14 +0000
commitb05eec8b1ea4cbad0b668a8974c87272acc78ed6 (patch)
treed3df417790fe731d9ef7f65d01a11cbd374285dc /apps/gui/list.c
parentf981ea93fb411019133a022c7dd873166d66b5dd (diff)
downloadrockbox-b05eec8b1ea4cbad0b668a8974c87272acc78ed6.tar.gz
rockbox-b05eec8b1ea4cbad0b668a8974c87272acc78ed6.zip
Big Code Police raid. Pretty pretty please, we do no macrofy simple
assignments and things just to make them appear as function calls. That makes code harder to follow. Did some gcc4 warning fixes as well. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8163 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/list.c')
-rw-r--r--apps/gui/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index ac084984eb..4e030c0a5f 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -166,7 +166,7 @@ void gui_list_draw(struct gui_list * gui_list)
166 for(i = 0;i < display->nb_lines;i++) 166 for(i = 0;i < display->nb_lines;i++)
167 { 167 {
168 char entry_buffer[MAX_PATH]; 168 char entry_buffer[MAX_PATH];
169 char * entry_name; 169 unsigned char *entry_name;
170 int current_item = gui_list->start_item + i; 170 int current_item = gui_list->start_item + i;
171 171
172 /* When there are less items to display than the 172 /* When there are less items to display than the