about summary refs log tree commit diff
path: root/lr.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-10-23 15:36:41 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2015-10-23 15:36:41 +0200
commit915f7c161b19201b47521e1849a9c83a5a29461e (patch)
treee90d36cf2dd25ab753fce4d3a8910648756789eb /lr.c
parentc6753a5633cee43d91a3ac6c9fc572dee95e8403 (diff)
downloadlr-915f7c161b19201b47521e1849a9c83a5a29461e.tar.gz
lr-915f7c161b19201b47521e1849a9c83a5a29461e.tar.xz
lr-915f7c161b19201b47521e1849a9c83a5a29461e.zip
remove debugging code
Diffstat (limited to 'lr.c')
-rw-r--r--lr.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lr.c b/lr.c
index e7bba32..eebf84d 100644
--- a/lr.c
+++ b/lr.c
@@ -199,7 +199,6 @@ parse_num(long *r)
 		else if (token("G")) n *= 1024L*1024*1024;
 		else if (token("T")) n *= 1024L*1024*1024*1024;
 		ws();
-printf("%ld %ld", n, INT64_MAX);
 		*r = n;
 		return 1;
 	} else {