From: Jim Meyering Date: Thu, 10 Apr 2003 19:09:30 +0000 (+0000) Subject: add comment X-Git-Tag: v5.0.1~752 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bac1785a6ee92f22abb3dd68d5c5fed3b65a04ce;p=thirdparty%2Fcoreutils.git add comment --- diff --git a/src/stat.c b/src/stat.c index f058931d82..841cffa093 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;