aboutsummaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-12 19:27:57 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-12 19:27:57 -0800
commit8144ae5dc941cce599889c0feb15ecceb9e4f878 (patch)
tree64991885ab9f0d65c3f5964276aeac1020d10198 /types.h
parent659ed934d297d0d21d141bc4e9ecf8519a390eb1 (diff)
Renamed op.op -> op.type
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.h b/types.h
index 9f61d5f..0afeb53 100644
--- a/types.h
+++ b/types.h
@@ -47,7 +47,7 @@ struct match_s; // forward declared to resolve circular struct defs
* A struct reperesenting a BP virtual machine operation
*/
typedef struct vm_op_s {
- enum VMOpcode op;
+ enum VMOpcode type;
const char *start, *end;
// Length of the match, if constant, otherwise -1
ssize_t len;