aboutsummaryrefslogtreecommitdiff
path: root/src/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 20:06:26 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 20:06:26 -0400
commita9349e7f557777604b6dba4033e9857ee7a4ff8c (patch)
treeb7af427df656036ed14fd27550ea2b2b7228af49 /src/compile.c
parent31249ee3c9626b5d89b1e3dd446885746370bf6a (diff)
Minor cleanup
Diffstat (limited to 'src/compile.c')
-rw-r--r--src/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compile.c b/src/compile.c
index 438e6cce..6bb528a0 100644
--- a/src/compile.c
+++ b/src/compile.c
@@ -4005,8 +4005,8 @@ Text_t compile(env_t *env, ast_t *ast) {
case Return:
case DocTest:
case Assert: code_err(ast, "This is not a valid expression");
- default:
- case Unknown: code_err(ast, "Unknown AST: ", ast_to_sexp_str(ast));
+ case Unknown:
+ default: code_err(ast, "Unknown AST: ", ast_to_sexp_str(ast));
}
return EMPTY_TEXT;
}