From: Eric Nelson Date: Sat, 2 Apr 2016 14:37:12 +0000 (-0700) Subject: cmd: blkcache: remove indentation from output of 'show' X-Git-Tag: v2016.05-rc1~21 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7e8721467da2e7cf0076533be9b2050cdc22ab1e;p=u-boot cmd: blkcache: remove indentation from output of 'show' Signed-off-by: Eric Nelson --- diff --git a/cmd/blkcache.c b/cmd/blkcache.c index 9a619e2199..a3dd549a9d 100644 --- a/cmd/blkcache.c +++ b/cmd/blkcache.c @@ -16,11 +16,11 @@ static int blkc_show(cmd_tbl_t *cmdtp, int flag, struct block_cache_stats stats; blkcache_stats(&stats); - printf(" hits: %u\n" - " misses: %u\n" - " entries: %u\n" - " max blocks/entry: %u\n" - " max cache entries: %u\n", + printf("hits: %u\n" + "misses: %u\n" + "entries: %u\n" + "max blocks/entry: %u\n" + "max cache entries: %u\n", stats.hits, stats.misses, stats.entries, stats.max_blocks_per_entry, stats.max_entries); return 0;