]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Fix exception unwind struct declaration.
authorMike Pall <mike>
Wed, 5 Feb 2014 11:04:08 +0000 (12:04 +0100)
committerMike Pall <mike>
Wed, 5 Feb 2014 11:04:08 +0000 (12:04 +0100)
src/lj_err.c

index 9fcf620e380906e4b2006e481dd973f997d85640..db182673384fc1fdcb9b9290bfa2b9e356bb22fb 100644 (file)
@@ -196,7 +196,7 @@ static void *err_unwind(lua_State *L, void *stopcf, int errcode)
 typedef struct _Unwind_Exception
 {
   uint64_t exclass;
-  void (*excleanup)(int, struct _Unwind_Exception);
+  void (*excleanup)(int, struct _Unwind_Exception *);
   uintptr_t p1, p2;
 } __attribute__((__aligned__)) _Unwind_Exception;