]> 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 702633ee43108df23a98c68cf04c3082d0b0eea4..cad8fb33ea2eb02a87e683a920fbbef15bf225f3 100644 (file)
@@ -27,7 +27,7 @@
  */
 /*
  * file.h - definitions for file(1) program
- * @(#)$File: file.h,v 1.169 2015/07/11 14:41:37 christos Exp $
+ * @(#)$File: file.h,v 1.170 2015/08/28 08:32:51 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 */
 };