Skip to content

Commit

Permalink
Update sys/shell/commands/sc_vfs.c
Browse files Browse the repository at this point in the history
Co-authored-by: Marian Buschsieweke <[email protected]>
  • Loading branch information
benpicco and maribu authored Sep 8, 2022
1 parent 6fb1ed1 commit 08ab8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/shell/commands/sc_vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static void _print_size(uint64_t size)
}
else if ((size & (KiB(1) - 1)) == 0) {
len = size / KiB(1);
unit = "kiB";
unit = "KiB";
} else {
len = size;
unit = NULL;
Expand Down

0 comments on commit 08ab8a0

Please sign in to comment.