From 91b52a1ade10272da5af7020e6f28ce78ef22072 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Sun, 22 Jan 2012 21:29:43 +0100 Subject: Fix another uninitialized var warning. Change-Id: I27d06003d5e9218a940057af1b5c5c1557e7653c --- uisimulator/common/lcd-playersim.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'uisimulator/common/lcd-playersim.c') diff --git a/uisimulator/common/lcd-playersim.c b/uisimulator/common/lcd-playersim.c index ed2af8d605..6ea6b526aa 100644 --- a/uisimulator/common/lcd-playersim.c +++ b/uisimulator/common/lcd-playersim.c @@ -41,15 +41,15 @@ static int double_height = 1; void lcd_print_icon(int x, int icon_line, bool enable, char **icon) { - int row, col; + int row = 0, col = 0; /* shut up gcc */ int y = (ICON_HEIGHT+(CHAR_HEIGHT*2+2)*CHAR_PIXEL) * icon_line; y += BORDER_MARGIN; x += BORDER_MARGIN; - for (row = 0; icon[row]; row++) + for (; icon[row]; row++) { - for (col = 0; icon[row][col]; col++) + for (; icon[row][col]; col++) { switch (icon[row][col]) { -- cgit v1.2.3