From 49f3a4213c305dd7a2465d1d1c2322c01c202295 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 Nov 2016 08:51:40 +0530 Subject: [PATCH] ... --- kitty/parser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kitty/parser.c b/kitty/parser.c index 178f5e903..9a41a8b0f 100644 --- a/kitty/parser.c +++ b/kitty/parser.c @@ -18,7 +18,6 @@ utoi(uint32_t *buf, unsigned int sz) { uint32_t *p = buf; // Ignore leading zeros while(sz > 0) { - printf("*p=%c\n", *p); if (*p == '0') { p++; sz--; } else break; }