From a086734c4e06138e1164f7bc747d00ed39576ba6 Mon Sep 17 00:00:00 2001 From: Job Vranish Date: Wed, 15 Feb 2012 16:09:33 -0500 Subject: [PATCH] Corrected placement of volatile keyword so that CEXCEPTION_T can be a pointer --- lib/CException.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CException.h b/lib/CException.h index c226253..2d34e33 100644 --- a/lib/CException.h +++ b/lib/CException.h @@ -36,7 +36,7 @@ //exception frame structures typedef struct { jmp_buf* pFrame; - volatile CEXCEPTION_T Exception; + CEXCEPTION_T volatile Exception; } CEXCEPTION_FRAME_T; //actual root frame storage (only one if single-tasking)