Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaozg committed Nov 13, 2024
1 parent 8478eef commit b4ddd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static void walk_cb(uv_handle_t* handle, void* arg) {
(lua_isnil(L, -1) ? "C" : "Lua" ));
#else
printf("handle(%d:%p) can be process by %s\n",
handle->type, handle (lua_isnil(L, -1) ? "C" : "Lua" ));
handle->type, handle, (lua_isnil(L, -1) ? "C" : "Lua" ));
#endif
lua_pop(L, 2);
}
Expand Down

0 comments on commit b4ddd8c

Please sign in to comment.