Browse Source

Fix exception unwind struct declaration.

Mike Pall 11 years ago
parent
commit
2be62dcfcd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lj_err.c

+ 1 - 1
src/lj_err.c

@@ -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;