aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jim.c b/jim.c
index 0c137a5..5837ee7 100644
--- a/jim.c
+++ b/jim.c
@@ -8423,8 +8423,8 @@ static const Jim_ObjType exprObjType = {
/* Expr bytecode structure */
typedef struct ExprByteCode
{
- int len; /* Length as number of tokens. */
ScriptToken *token; /* Tokens array. */
+ int len; /* Length as number of tokens. */
int inUse; /* Used for sharing. */
} ExprByteCode;