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
This commit is contained in:
committed by
Tatsuya Kinoshita
parent
f1fd7215d2
commit
428f9e8267
+1
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user