summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan <stefan.haubenthal@gmail.com>2023-06-05 23:59:29 +0200
committerGitHub <noreply@github.com>2023-06-06 06:59:29 +0900
commit90bfa9624907b97acc7d8820ef190bef9b715e11 (patch)
tree64a859497ab74a55912221f19a5dcd1cc90c594d
parentd178ebdc94dddfd565fb523989a88f0a74655b3e (diff)
Fixed typo in errors on missing some mathematical filters (#2434)
-rw-r--r--src/builtin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/builtin.c b/src/builtin.c
index 1c6b08cd..6fa1c52f 100644
--- a/src/builtin.c
+++ b/src/builtin.c
@@ -1817,13 +1817,13 @@ static const char jq_builtins[] =
#define LIBM_DDDD_NO(name) "def " #name "(a;b;c): \"Error: " #name "/3 not found at build time\"|error;"
#include "libm.h"
#ifndef HAVE_FREXP
- "def frexp: \"Error: frexp/0 not found found at build time\"|error;"
+ "def frexp: \"Error: frexp/0 not found at build time\"|error;"
#endif
#ifndef HAVE_MODF
- "def modf: \"Error: modf/0 not found found at build time\"|error;"
+ "def modf: \"Error: modf/0 not found at build time\"|error;"
#endif
#ifndef HAVE_LGAMMA_R
- "def lgamma_r: \"Error: lgamma_r/0 not found found at build time\"|error;"
+ "def lgamma_r: \"Error: lgamma_r/0 not found at build time\"|error;"
#endif
;