summaryrefslogtreecommitdiff
path: root/file
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-04-14 21:04:43 +0000
committerjbj <devnull@localhost>2003-04-14 21:04:43 +0000
commit748f965540b6133d588864de928e7485a7bf54e9 (patch)
tree04a7c83783a42b535bac28c33d507bbca50fd869 /file
parent57b080d43fbc3095152e01f74d9a5b2342a400ae (diff)
downloadrpm-748f965540b6133d588864de928e7485a7bf54e9.tar.gz
rpm-748f965540b6133d588864de928e7485a7bf54e9.tar.bz2
rpm-748f965540b6133d588864de928e7485a7bf54e9.zip
Typos.
CVS patchset: 6741 CVS date: 2003/04/14 21:04:43
Diffstat (limited to 'file')
-rw-r--r--file/src/file.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/file/src/file.h b/file/src/file.h
index fb843a5c9..deec95d9f 100644
--- a/file/src/file.h
+++ b/file/src/file.h
@@ -86,14 +86,17 @@ struct magic {
/* Word 3 */
uint8_t in_op; /* operator for indirection */
uint8_t mask_op; /* operator for mask */
-#define FILE_OPAND 1
-#define FILE_OPOR 2
-#define FILE_OPXOR 3
-#define FILE_OPADD 4
-#define FILE_OPMINUS 5
-#define FILE_OPMULTIPLY 6
-#define FILE_OPDIVIDE 7
-#define FILE_OPMODULO 8
+ uint8_t dummy1;
+ uint8_t dummy2;
+#define FILE_OPS "&|^+-*%/"
+#define FILE_OPAND 0
+#define FILE_OPOR 1
+#define FILE_OPXOR 2
+#define FILE_OPADD 3
+#define FILE_OPMINUS 4
+#define FILE_OPMULTIPLY 5
+#define FILE_OPDIVIDE 6
+#define FILE_OPMODULO 7
#define FILE_OPINVERSE 0x80
/* Word 4 */
int32_t offset; /* offset to magic number */