diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-10 19:09:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-10 19:09:30 +0000 |
commit | bac1785a6ee92f22abb3dd68d5c5fed3b65a04ce (patch) | |
tree | e5435130504950a41bed6695191738eecbdf8f79 | |
parent | c1b5a21a8472a017768687f68f6ee6c269ccd24b (diff) | |
download | coreutils-bac1785a6ee92f22abb3dd68d5c5fed3b65a04ce.tar.xz |
add comment
-rw-r--r-- | src/stat.c | 6 |
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; |