summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-04-15 07:21:42 +0000
committerJim Meyering <jim@meyering.net>2002-04-15 07:21:42 +0000
commitd133be1fc3b2acbccba8c30d82434bffd8f7985a (patch)
treecc0fca03aa1d9130741ee7e6115cdfacc7db1683 /src
parentad02a0f47db367e904a6160816662a413457a537 (diff)
downloadcoreutils-d133be1fc3b2acbccba8c30d82434bffd8f7985a.tar.xz
(print_human_fstype): Add missing `break;' for `case S_MAGIC_MINIX:'.
Diffstat (limited to 'src')
-rw-r--r--src/stat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c
index 9165a10ab..e818d7e50 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -123,6 +123,7 @@ print_human_fstype (struct statfs const *statfsbuf)
break;
case S_MAGIC_MINIX:
type = "minix";
+ break;
case S_MAGIC_MINIX_30:
type = "minix (30 char.)";
break;