aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-25 10:55:27 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-25 10:55:27 -0400
commitfd0a53b37898b617c56bc4af8b0af9651f9bde43 (patch)
tree4ae70d9236d9847301dc0062653b358f8361e839 /src
parent2a43fd3bc5e056aa994cfb86b52a5c9844a355e0 (diff)
Speculative fix.
Diffstat (limited to 'src')
-rw-r--r--src/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile.c b/src/compile.c
index 79ae73a6..37b3934f 100644
--- a/src/compile.c
+++ b/src/compile.c
@@ -1258,7 +1258,7 @@ static CORD _compile_statement(env_t *env, ast_t *ast)
case LessThanOrEquals: failure = ">"; goto assert_comparison;
case GreaterThan: failure = "<="; goto assert_comparison;
case GreaterThanOrEquals: failure = "<"; goto assert_comparison; {
- assert_comparison:
+ assert_comparison:;
binary_operands_t cmp = BINARY_OPERANDS(expr);
type_t *lhs_t = get_type(env, cmp.lhs);
type_t *rhs_t = get_type(env, cmp.rhs);