From: Mike Pall Date: Wed, 5 Feb 2014 11:04:08 +0000 (+0100) Subject: Fix exception unwind struct declaration. X-Git-Tag: v2.0.3~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2be62dcfcdea2c60047335e613fe5bd0b85911c2;p=thirdparty%2FLuaJIT.git Fix exception unwind struct declaration. --- diff --git a/src/lj_err.c b/src/lj_err.c index 9fcf620e..db182673 100644 --- a/src/lj_err.c +++ b/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;