summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-10 19:09:30 +0000
committerJim Meyering <jim@meyering.net>2003-04-10 19:09:30 +0000
commitbac1785a6ee92f22abb3dd68d5c5fed3b65a04ce (patch)
treee5435130504950a41bed6695191738eecbdf8f79 /src
parentc1b5a21a8472a017768687f68f6ee6c269ccd24b (diff)
downloadcoreutils-bac1785a6ee92f22abb3dd68d5c5fed3b65a04ce.tar.xz
add comment
Diffstat (limited to 'src')
-rw-r--r--src/stat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c
index f058931d8..841cffa09 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -124,6 +124,12 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
switch (statfsbuf->f_type)
{
# if defined __linux__
+
+ /* IMPORTANT NOTE: Each of the following `case S_MAGIC_...:'
+ statements must be followed by a hexadecimal constant in
+ a comment. The S_MAGIC_... name and constant are automatically
+ combined to produce the #define directives in fs.h. */
+
case S_MAGIC_AFFS: /* 0xADFF */
type = "affs";
break;