diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-03-31 02:45:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-03-31 02:45:22 +0200 |
commit | 7bf304f371ee08634d31a4e6b3cbd7d2d32e51d9 (patch) | |
tree | 30e4a0e0d32b133df08a30e77db4aff23cf29d48 /coreutils | |
parent | 6ffaa00338a9dc5f9e798c30aa9f96e51ab2ef36 (diff) | |
download | busybox-7bf304f371ee08634d31a4e6b3cbd7d2d32e51d9.tar.gz |
stat: fix a typo: s/romfs/ramfs/, closes 10876
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index 7ba3db155..3d527ae63 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -212,7 +212,7 @@ static const char *human_fstype(uint32_t f_type) { 0x52654973, "reiserfs" }, { 0x28cd3d45, "cramfs" }, { 0x7275, "romfs" }, - { 0x858458f6, "romfs" }, + { 0x858458f6, "ramfs" }, { 0x73717368, "squashfs" }, { 0x62656572, "sysfs" }, { 0, "UNKNOWN" } |