diff --git a/fs/mount/fs_procfs_mount.c b/fs/mount/fs_procfs_mount.c index 17275a00511..a71ae7c579a 100644 --- a/fs/mount/fs_procfs_mount.c +++ b/fs/mount/fs_procfs_mount.c @@ -301,7 +301,7 @@ static int usage_entry(FAR const char *mountpoint, if (!info->header) { mount_sprintf(info, - " Filesystem Size Used Available Mounted on\n"); + " Filesystem Size Used Available Mounted on\n"); info->header = true; } @@ -349,7 +349,7 @@ static int usage_entry(FAR const char *mountpoint, /* Generate usage list one line at a time */ mount_sprintf(info, - " %-10s %" PRIuOFF "%c %8" PRIuOFF "%c %8" PRIuOFF "%c %s\n", + " %-10s %8" PRIuOFF "%c %8" PRIuOFF "%c %8" PRIuOFF "%c %s\n", fstype, size, sizelabel, used, usedlabel, free, freelabel, mountpoint); return (info->totalsize >= info->buflen) ? 1 : 0;