diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2006-07-23 21:17:39 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2006-07-23 21:17:39 +0000 |
| commit | 9013cb0f9e9667c0152be04c649bcb82d0571e4d (patch) | |
| tree | 1ed55197b5c0b7594c8eeab17a98293be3e4ff07 /apps/plugins | |
| parent | a096c836891df73a2dd1386e8f30f840f2c4cd26 (diff) | |
| download | rockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.zip rockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.tar.gz rockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.tar.bz2 rockbox-9013cb0f9e9667c0152be04c649bcb82d0571e4d.tar.xz | |
Fix compile warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10301 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/rockpaint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockpaint.c b/apps/plugins/rockpaint.c index da0d1c8..bedec83 100644 --- a/apps/plugins/rockpaint.c +++ b/apps/plugins/rockpaint.c @@ -776,7 +776,7 @@ static bool browse_fonts( char *dst, int dst_size ) #define WIDTH ( LCD_WIDTH - 20 ) #define HEIGHT ( LCD_HEIGHT - 20 ) #define LINE_SPACE 2 - int top, top_inside, left; + int top, top_inside = 0, left; DIR *d; struct dirent *de; |