Resolved gcc compiler warning

Resolved warning that the address of `PrevFrame` will always evaluate to `true`.
This commit is contained in:
Dustin Morrill
2013-08-24 14:32:28 -06:00
parent 347be7df3f
commit 944b9ea7a7
+1 -1
View File
@@ -62,7 +62,7 @@ extern volatile CEXCEPTION_FRAME_T CExceptionFrames[];
CExceptionFrames[MY_ID].pFrame = (jmp_buf*)(&NewFrame); \
CExceptionFrames[MY_ID].Exception = CEXCEPTION_NONE; \
if (setjmp(NewFrame) == 0) { \
if (&PrevFrame)
if (1)
//Catch (see C file for explanation)
#define Catch(e) \