summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2006-07-23 21:17:39 +0000
committerAntoine Cellerier <dionoea@videolan.org>2006-07-23 21:17:39 +0000
commit9013cb0f9e9667c0152be04c649bcb82d0571e4d (patch)
tree1ed55197b5c0b7594c8eeab17a98293be3e4ff07
parenta096c836891df73a2dd1386e8f30f840f2c4cd26 (diff)
downloadrockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.tar.gz
rockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.zip
Fix compile warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10301 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/rockpaint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c
index da0d1c83c3..bedec839c5 100644
--- a/apps/plugins/rockpaint.c
+++ b/apps/plugins/rockpaint.c
@@ -776,7 +776,7 @@ static bool browse_fonts( char *dst, int dst_size )
776#define WIDTH ( LCD_WIDTH - 20 ) 776#define WIDTH ( LCD_WIDTH - 20 )
777#define HEIGHT ( LCD_HEIGHT - 20 ) 777#define HEIGHT ( LCD_HEIGHT - 20 )
778#define LINE_SPACE 2 778#define LINE_SPACE 2
779 int top, top_inside, left; 779 int top, top_inside = 0, left;
780 780
781 DIR *d; 781 DIR *d;
782 struct dirent *de; 782 struct dirent *de;