]> granicus.if.org Git - file/commitdiff
fix comments about byte sizes; Christoph Biedl
authorChristos Zoulas <christos@zoulas.com>
Sun, 30 Aug 2015 14:16:33 +0000 (14:16 +0000)
committerChristos Zoulas <christos@zoulas.com>
Sun, 30 Aug 2015 14:16:33 +0000 (14:16 +0000)
src/file.h

index 02118338486071c1850693236a95e6619b81f0f1..6912e4df42f34e43fbab47676febfa727e85ba00 100644 (file)
@@ -27,7 +27,7 @@
  */
 /*
  * file.h - definitions for file(1) program
- * @(#)$File: file.h,v 1.170 2015/08/28 08:32:51 christos Exp $
+ * @(#)$File: file.h,v 1.171 2015/08/30 14:16:33 christos Exp $
  */
 
 #ifndef __file_h__
@@ -302,15 +302,15 @@ struct magic {
 #define num_mask _u._mask
 #define str_range _u._s._count
 #define str_flags _u._s._flags
-       /* Words 9-16 */
+       /* Words 9-24 */
        union VALUETYPE value;  /* either number or string */
-       /* Words 17-32 */
+       /* Words 25-40 */
        char desc[MAXDESC];     /* description */
-       /* Words 33-52 */
+       /* Words 41-60 */
        char mimetype[MAXMIME]; /* MIME type */
-       /* Words 53-54 */
+       /* Words 61-62 */
        char apple[8];          /* APPLE CREATOR/TYPE */
-       /* Words 55-63 */
+       /* Words 63-78 */
        char ext[64];           /* Popular extensions */
 };