about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-07-04 15:28:47 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-07-04 15:28:47 +0200
commitd35833fb03dcd08db775c40cdb145b964f6f797d (patch)
tree8aea0995d0e7c8f049e4fd00c8e26332612b1073
parentfa5ff0d60a2de1c6d077e74a0e74894c8c939317 (diff)
downloadxdu-d35833fb03dcd08db775c40cdb145b964f6f797d.tar.gz
xdu-d35833fb03dcd08db775c40cdb145b964f6f797d.tar.xz
xdu-d35833fb03dcd08db775c40cdb145b964f6f797d.zip
remove debugging output
-rw-r--r--xdu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xdu.c b/xdu.c
index 09c3042..f4aacaf 100644
--- a/xdu.c
+++ b/xdu.c
@@ -240,7 +240,7 @@ parse_file(char *filename)
 	}
 	while (fgets(buf,sizeof(buf),fp) != NULL) {
 		sscanf(buf, "%jd %4095[^\n]\n", &size, name);
-		printf("%jd %s\n", size, name);
+		/*printf("%jd %s\n", size, name);*/
 		parse_entry(name,(off_t)size);
 	}
 	fclose(fp);