mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
src/builtin.c: Add missing semicolon
This commit is contained in:
committed by
Emanuele Torre
parent
92d35378ff
commit
6980cc9713
@ -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); \
|
||||
|
Reference in New Issue
Block a user