From: Sebastian Stark Date: Mon, 19 May 2008 16:21:30 +0000 (+0200) Subject: put tab between number of files and number of bytes in dir_stats X-Git-Tag: v0.0.2~45^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=93b8fb08f9c22718d01f8116d3b6aec91eb2e329 put tab between number of files and number of bytes in dir_stats --- diff --git a/adu.c b/adu.c index 849419b..292501d 100644 --- a/adu.c +++ b/adu.c @@ -533,7 +533,7 @@ static int print_id_stats(struct osl_row *row, __a_unused void *data) return ret; files = *(uint64_t *)obj.data; - printf("%u\t%llu%llu\n", (unsigned)uid, (long long unsigned)files, + printf("%u\t%llu\t%llu\n", (unsigned)uid, (long long unsigned)files, (long long unsigned)bytes); return 1; }