Fix compilation error "too few arguments to function 'longjmp'"

Origin: e7a12fa28c
Bug-MacPorts: https://trac.macports.org/ticket/61356
This commit is contained in:
Parag A Nemade
2020-11-22 21:16:07 +09:00
committed by Tatsuya Kinoshita
parent f1fd7215d2
commit 428f9e8267

View File

@@ -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