summaryrefslogtreecommitdiff
path: root/src/lj_err.c
diff options
context:
space:
mode:
authorMike Pall <mike>2014-02-05 12:04:08 +0100
committerMike Pall <mike>2014-02-05 12:04:08 +0100
commit2be62dcfcdea2c60047335e613fe5bd0b85911c2 (patch)
tree25f27cfa4509f59ad8ab381f9aff105b3d96bf64 /src/lj_err.c
parent92475419e5cc5e61c5feb6a0fe549b1fc4a9d7cf (diff)
downloadluajit2-2be62dcfcdea2c60047335e613fe5bd0b85911c2.tar.gz
Fix exception unwind struct declaration.
Diffstat (limited to 'src/lj_err.c')
-rw-r--r--src/lj_err.c2
1 files changed, 1 insertions, 1 deletions
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;