summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Eckhardt <ulrich.eckhardt@base-42.de>2024-02-06 19:52:26 +0100
committerEmanuele Torre <torreemanuele6@gmail.com>2024-02-08 19:27:48 +0100
commit6980cc9713f65d0af2cf4cbac8108b4c67c5e382 (patch)
tree007e200f0120de3437fd5de812977d4a71e7b2ec
parent92d35378ff5b52db879ef85f8321e4aae0fca1fb (diff)
src/builtin.c: Add missing semicolon
-rw-r--r--src/builtin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/builtin.c b/src/builtin.c
index a7366a68..9aebd1f2 100644
--- a/src/builtin.c
+++ b/src/builtin.c
@@ -210,7 +210,7 @@ static jv f_ ## name(jq_state *jq, jv input, jv a, jv b, jv c) { \
}
#define LIBM_DDDD_NO(name) \
static jv f_ ## name(jq_state *jq, jv input, jv a, jv b, jv c) { \
- jv_free(c) \
+ jv_free(c); \
jv_free(b); \
jv error = jv_string("Error: " #name "/3 not found at build time"); \
return ret_error2(input, a, error); \