diff options
author | Leah Neukirchen <leah@vuxu.org> | 2017-07-04 15:28:47 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2017-07-04 15:28:47 +0200 |
commit | d35833fb03dcd08db775c40cdb145b964f6f797d (patch) | |
tree | 8aea0995d0e7c8f049e4fd00c8e26332612b1073 | |
parent | fa5ff0d60a2de1c6d077e74a0e74894c8c939317 (diff) | |
download | xdu-d35833fb03dcd08db775c40cdb145b964f6f797d.tar.gz xdu-d35833fb03dcd08db775c40cdb145b964f6f797d.tar.xz xdu-d35833fb03dcd08db775c40cdb145b964f6f797d.zip |
remove debugging output
-rw-r--r-- | xdu.c | 2 |
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); |