]> err.no Git - util-linux/commitdiff
lib: remove unwanted debug messages
authorKarel Zak <kzak@redhat.com>
Fri, 16 Apr 2010 12:59:10 +0000 (14:59 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 3 Jun 2010 13:20:13 +0000 (15:20 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
lib/tt.c

index beb04311f641be23197b3e05f33a46a45b7fc7b6..7d87bf54e0a6e88d0f07b5696769b2016313f5d2 100644 (file)
--- a/lib/tt.c
+++ b/lib/tt.c
@@ -388,9 +388,6 @@ static void recount_widths(struct tt *tb, char *buf, size_t bufsz)
 
                        if (cl->width < len)
                                cl->width = len;
-
-fprintf(stderr, "KZAK: 1: %s = %d\n", cl->name, cl->width);
-
                }
        }
 
@@ -409,9 +406,6 @@ fprintf(stderr, "KZAK: 1: %s = %d\n", cl->name, cl->width);
                        cl->width = (int) cl->width_hint;
 
                width += cl->width + (is_last_column(tb, cl) ? 0 : 1);
-
-fprintf(stderr, "KZAK: 2: %s = %d\n", cl->name, cl->width);
-
        }
 
        if (width == tb->termwidth)
@@ -460,7 +454,7 @@ fprintf(stderr, "KZAK: 2: %s = %d\n", cl->name, cl->width);
                }
        }
 leave:
-///*
+/*
        fprintf(stderr, "terminal: %d, output: %d\n", tb->termwidth, width);
 
        list_for_each(p, &tb->tb_columns) {
@@ -472,7 +466,7 @@ leave:
                        cl->width_hint > 1 ? (int) cl->width_hint :
                                             (int) (cl->width_hint * tb->termwidth));
        }
-//*/
+*/
        return;
 }