aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
authorParag A Nemade <pnemade@fedoraproject.org>2020-11-22 12:16:07 +0000
committerTatsuya Kinoshita <tats@debian.org>2020-11-22 12:16:07 +0000
commit428f9e82676e3525f89b0d62a28af566ffc717a5 (patch)
treeabdfe44ff89fc0453061e92056b2cfe8f6dc906b /config.h.in
parentFix FTBFS due to redefinition of sys_errlist (diff)
downloadw3m-428f9e82676e3525f89b0d62a28af566ffc717a5.tar.gz
w3m-428f9e82676e3525f89b0d62a28af566ffc717a5.zip
Fix compilation error "too few arguments to function 'longjmp'"
Origin: https://src.fedoraproject.org/rpms/w3m/c/e7a12fa28cfbfbb0115ec74994092c1d3b8351d8?branch=master Bug-MacPorts: https://trac.macports.org/ticket/61356
Diffstat (limited to '')
-rw-r--r--config.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in
index 6ab3008..7c03d3c 100644
--- a/config.h.in
+++ b/config.h.in
@@ -181,7 +181,7 @@ typedef RETSIGTYPE MySignalHandler;
#endif /* __MINGW32_VERSION */
#else
# define SETJMP(env) setjmp(env)
-# define LONGJMP(env,val) longjmp(env)
+# define LONGJMP(env,val) longjmp(env, val)
# define JMP_BUF jmp_buf
#endif