From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Nelson Date: Sat, 2 Apr 2016 07:37:12 -0700 Subject: [U-Boot] [PATCH 1/3] cmd: blkcache: remove indentation from output of 'show' In-Reply-To: <1459607834-5454-1-git-send-email-eric@nelint.com> References: <56FFD4D6.8050007@nelint.com> <1459607834-5454-1-git-send-email-eric@nelint.com> Message-ID: <1459607834-5454-2-git-send-email-eric@nelint.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Eric Nelson --- cmd/blkcache.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/blkcache.c b/cmd/blkcache.c index 725163a..d97bed5 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; -- 2.6.2