Skip to content

Commit

Permalink
ByteLoader: fix -Wincompatible-pointer-types
Browse files Browse the repository at this point in the history
  • Loading branch information
rurban committed Nov 15, 2018
1 parent c61c1ab commit 34fe573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ByteLoader/bytecode.h
Expand Up @@ -825,7 +825,7 @@ static int bget_swab = 0;
} STMT_END
#else
#define BSET_newpadnlx(padnl, flags) STMT_START { \
padnl = (SV*)pad_new(flags); \
padnl = (AV*)pad_new(flags); \
BSET_OBJ_STOREX(padnl); \
} STMT_END
#endif
Expand Down

0 comments on commit 34fe573

Please sign in to comment.