diff options
author | Parag A Nemade <pnemade@fedoraproject.org> | 2020-11-22 12:16:07 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2020-11-22 12:16:07 +0000 |
commit | 428f9e82676e3525f89b0d62a28af566ffc717a5 (patch) | |
tree | abdfe44ff89fc0453061e92056b2cfe8f6dc906b /config.h.in | |
parent | Fix FTBFS due to redefinition of sys_errlist (diff) | |
download | w3m-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.in | 2 |
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 |