diff mbox

console: Remove unused debug code

Message ID 1384095499-12255-1-git-send-email-sw@weilnetz.de
State Accepted
Headers show

Commit Message

Stefan Weil Nov. 10, 2013, 2:58 p.m. UTC
The local function console_print_text_attributes is no longer used since
commit 7d6ba01c3741bc32ae252bf64a5fd3f930c2df4f.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
 ui/console.c |   33 ---------------------------------
 1 file changed, 33 deletions(-)

Comments

Gerd Hoffmann Nov. 11, 2013, 9:22 a.m. UTC | #1
On So, 2013-11-10 at 15:58 +0100, Stefan Weil wrote:
> The local function console_print_text_attributes is no longer used
> since
> commit 7d6ba01c3741bc32ae252bf64a5fd3f930c2df4f.

Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>

cheers,
  Gerd
Michael Tokarev Nov. 13, 2013, 11:54 a.m. UTC | #2
10.11.2013 18:58, Stefan Weil пишет:
> The local function console_print_text_attributes is no longer used since
> commit 7d6ba01c3741bc32ae252bf64a5fd3f930c2df4f.

Thanks, applied to the trivial-patches queue.

/mjt
diff mbox

Patch

diff --git a/ui/console.c b/ui/console.c
index 11d5e6a..61ed219 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -410,39 +410,6 @@  static const pixman_color_t color_table_rgb[2][8] = {
     }
 };
 
-#ifdef DEBUG_CONSOLE
-static void console_print_text_attributes(TextAttributes *t_attrib, char ch)
-{
-    if (t_attrib->bold) {
-        printf("b");
-    } else {
-        printf(" ");
-    }
-    if (t_attrib->uline) {
-        printf("u");
-    } else {
-        printf(" ");
-    }
-    if (t_attrib->blink) {
-        printf("l");
-    } else {
-        printf(" ");
-    }
-    if (t_attrib->invers) {
-        printf("i");
-    } else {
-        printf(" ");
-    }
-    if (t_attrib->unvisible) {
-        printf("n");
-    } else {
-        printf(" ");
-    }
-
-    printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch);
-}
-#endif
-
 static void vga_putcharxy(QemuConsole *s, int x, int y, int ch,
                           TextAttributes *t_attrib)
 {