Avoiding

Vadim B. Mikheev <vadim4o@yahoo.com>

Commit: 25eb9e2a66772875dc09c609747d94c368c69501
Author: Vadim B. Mikheev <vadim4o@yahoo.com>
Date: 1996-12-14T05:55:27Z
Releases: 7.1.1
Avoiding
cc1: warnings being treated as errors
exc.c: In function 'ExcRaise':
exc.c:186: warning: passing arg 1 of 'Longjmp' from incompatible pointer type
gmake[3]: *** [exc.o] Error 1

Now we have:
#if defined (JMP_BUF)
        longjmp(efp->context, 1);
#else
        siglongjmp(efp->context, 1);
#endif

Files

PathChange+/−
src/backend/utils/error/exc.c modified +5 −1