Fix compilation error "too few arguments to function 'longjmp'"
Origin: e7a12fa28c
Bug-MacPorts: https://trac.macports.org/ticket/61356
This commit is contained in:
committed by
Tatsuya Kinoshita
parent
f1fd7215d2
commit
428f9e8267
@@ -181,7 +181,7 @@ typedef RETSIGTYPE MySignalHandler;
|
|||||||
#endif /* __MINGW32_VERSION */
|
#endif /* __MINGW32_VERSION */
|
||||||
#else
|
#else
|
||||||
# define SETJMP(env) setjmp(env)
|
# define SETJMP(env) setjmp(env)
|
||||||
# define LONGJMP(env,val) longjmp(env)
|
# define LONGJMP(env,val) longjmp(env, val)
|
||||||
# define JMP_BUF jmp_buf
|
# define JMP_BUF jmp_buf
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user