Skip to content

Commit 354930d

Browse files
fixing bug on format
1 parent a6d683e commit 354930d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LuaCEmbed/args/basic/fdefine.basic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
lua_Integer privateLuaCEmbed_put_arg_on_top(LuaCEmbed *self, lua_Integer index){
44
PRIVATE_LUA_CEMBED_PROTECT_NUM
5-
lua_Integer formatted_index = index + LUA_CEMBED_INDEX_DIF;
5+
int formatted_index = index + LUA_CEMBED_INDEX_DIF;
66

77
if(formatted_index > self->total_args){
88
privateLuaCEmbed_raise_error_not_jumping(self,PRIVATE_LUA_CEMBED_ARG_NOT_PROVIDED,formatted_index,self->current_function);

0 commit comments

Comments
 (0)