X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=stat.c;h=9def50759cf22706860b9d0ddea4e488247a839b;hp=532f9cdfc5449add435bcfb4ba71a91924991c9b;hb=959d66719258a7b3d5028e5e6770972768621a4f;hpb=69f0930489da9ace5af8aee104ad21d188aed387 diff --git a/stat.c b/stat.c index 532f9cdf..9def5075 100644 --- a/stat.c +++ b/stat.c @@ -269,7 +269,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) char *start = buf, *end; int i, num_lines = 0; - PARA_INFO_LOG("buf: %s", buf); +// PARA_INFO_LOG("buf: %s", buf); while (start < buf + n) { char *next_null; char *next_cr; @@ -287,7 +287,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) num_lines++; if (line_handler) { *end = '\0'; - PARA_INFO_LOG("calling line handler: %s\n", start); +// PARA_INFO_LOG("calling line handler: %s\n", start); line_handler(start); start = ++end; } else