diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -173,7 +173,7 @@ typedef struct CallInfo { | |||
173 | union { | 173 | union { |
174 | struct { /* only for Lua functions */ | 174 | struct { /* only for Lua functions */ |
175 | const Instruction *savedpc; | 175 | const Instruction *savedpc; |
176 | l_signalT trap; | 176 | volatile l_signalT trap; |
177 | int nextraargs; /* # of extra arguments in vararg functions */ | 177 | int nextraargs; /* # of extra arguments in vararg functions */ |
178 | } l; | 178 | } l; |
179 | struct { /* only for C functions */ | 179 | struct { /* only for C functions */ |
@@ -300,7 +300,7 @@ struct lua_State { | |||
300 | int stacksize; | 300 | int stacksize; |
301 | int basehookcount; | 301 | int basehookcount; |
302 | int hookcount; | 302 | int hookcount; |
303 | l_signalT hookmask; | 303 | volatile l_signalT hookmask; |
304 | }; | 304 | }; |
305 | 305 | ||
306 | 306 | ||