Commit 7e8721467da2e7cf0076533be9b2050cdc22ab1e

Authored by Eric Nelson
Committed by Tom Rini
1 parent 158c9c78a5

cmd: blkcache: remove indentation from output of 'show'

Signed-off-by: Eric Nelson <eric@nelint.com>

Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff

... ... @@ -16,11 +16,11 @@
16 16 struct block_cache_stats stats;
17 17 blkcache_stats(&stats);
18 18  
19   - printf(" hits: %u\n"
20   - " misses: %u\n"
21   - " entries: %u\n"
22   - " max blocks/entry: %u\n"
23   - " max cache entries: %u\n",
  19 + printf("hits: %u\n"
  20 + "misses: %u\n"
  21 + "entries: %u\n"
  22 + "max blocks/entry: %u\n"
  23 + "max cache entries: %u\n",
24 24 stats.hits, stats.misses, stats.entries,
25 25 stats.max_blocks_per_entry, stats.max_entries);
26 26 return 0;