Hello!

The attached patch fixes the garbage characters seen instead of vertical bars in the coreinfo ramdump_module screen. Compile tested against r3478 and runtime tested with coreinfo+coreboot-v3 in QEMU.

/ulf
Fix garbage characters on screen. mvwaddch inserts one character,
not a character array.

Signed-off-by: Ulf Jordan <[EMAIL PROTECTED]>

Index: coreinfo/ramdump_module.c
===================================================================
--- coreinfo/ramdump_module.c   (revision 3478)
+++ coreinfo/ramdump_module.c   (arbetskopia)
@@ -40,8 +40,8 @@
        for (i = 1; i < 257; i++) {
                if (x == 0) {
                        mvwprintw(win, row + y, col - 1, "%08x", addr + 16 * y);
-                       mvwaddch(win, row + y, col + 59, (const chtype)"|");
-                       mvwaddch(win, row + y, col + 76, (const chtype)"|");
+                       mvwaddch(win, row + y, col + 59, '|');
+                       mvwaddch(win, row + y, col + 76, '|');
                }
                mvwprintw(win, row + y, col + x + 9, "%02x", ptr[i - 1]);
                mvwprintw(win, row + y, 62 + count++, "%c", ptr[i - 1]);
--
coreboot mailing list
[email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to