move variable declaration to where it is used, to prevent gcc failure.
authorPatrick Georgi <patrick.georgi@coresystems.de>
Wed, 8 Oct 2008 11:17:25 +0000 (11:17 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Wed, 8 Oct 2008 11:17:25 +0000 (11:17 +0000)
Reported by Roman Yeryomin (and also seen reported earlier). (trivial)

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3641 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

payloads/libpayload/curses/tinycurses.c

index 22807c72cafa3434f491947833ec9bdbb0e9f441..f6c14a4c459e005b91c5ad96f8d2f5fb2c32d32c 100644 (file)
@@ -736,9 +736,6 @@ int wnoutrefresh(WINDOW *win)
                for (x = win->_line[y].firstchar; x <= win->_line[y].lastchar; x++) {
                        attr_t attr = win->_line[y].text[x].attr;
 
-                       unsigned int c =
-                               ((int)color_pairs[PAIR_NUMBER(attr)]) << 8;
-
 #ifdef CONFIG_SERIAL_CONSOLE
                        if (curses_flags & F_ENABLE_SERIAL) {
                                ch = win->_line[y].text[x].chars[0];
@@ -806,6 +803,9 @@ int wnoutrefresh(WINDOW *win)
                        }
 #endif
 #ifdef CONFIG_VIDEO_CONSOLE
+                       unsigned int c =
+                               ((int)color_pairs[PAIR_NUMBER(attr)]) << 8;
+
                        c = SWAP_RED_BLUE(c);
 
                        if (curses_flags & F_ENABLE_CONSOLE) {