Skip to content

Commit

Permalink
Fixed typo in errors on missing some mathematical filters (jqlang#2434)
Browse files Browse the repository at this point in the history
  • Loading branch information
polluks authored Jun 5, 2023
1 parent d178ebd commit 90bfa96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/builtin.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
;

Expand Down

0 comments on commit 90bfa96

Please sign in to comment.