diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-eval.c | 2 | ||||
-rw-r--r-- | src/core/wee-eval.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-eval.c b/src/core/wee-eval.c index abd1b03db..2fce50097 100644 --- a/src/core/wee-eval.c +++ b/src/core/wee-eval.c @@ -40,7 +40,7 @@ #include "../plugins/plugin.h" -char *logical_ops[EVAL_NUM_LOGICAL_OPS] = { "&&", "||" }; +char *logical_ops[EVAL_NUM_LOGICAL_OPS] = { "||", "&&" }; char *comparisons[EVAL_NUM_COMPARISONS] = { "==", "!=", "<=", "<", ">=", ">", "=~", "!~" }; diff --git a/src/core/wee-eval.h b/src/core/wee-eval.h index bd3174d48..d768ff2cb 100644 --- a/src/core/wee-eval.h +++ b/src/core/wee-eval.h @@ -27,8 +27,8 @@ struct t_hashtable; enum t_eval_logical_op { - EVAL_LOGICAL_OP_AND = 0, - EVAL_LOGICAL_OP_OR, + EVAL_LOGICAL_OP_OR = 0, + EVAL_LOGICAL_OP_AND, /* number of comparison strings */ EVAL_NUM_LOGICAL_OPS, }; |