diff options
| author | ruki <[email protected]> | 2025-11-10 06:35:04 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-10 06:35:04 +0800 |
| commit | 2b01e46fcf619aaecb8435b0fac975e3aff0587f (patch) | |
| tree | 8f005a8dfc3272e9f027560e5e1b5881a7a8bc70 /core/src/xmake/io/socket_ctrl.c | |
| parent | a1b0ec856e2c22aac84022feb05b6687912e3d6e (diff) | |
| parent | 2c387895657ae13cd717d7f42f5baed5eb028a8e (diff) | |
Merge pull request #7008 from xmake-io/format
format code
Diffstat (limited to 'core/src/xmake/io/socket_ctrl.c')
| -rw-r--r-- | core/src/xmake/io/socket_ctrl.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/core/src/xmake/io/socket_ctrl.c b/core/src/xmake/io/socket_ctrl.c index a4192850a..0a51d65bc 100644 --- a/core/src/xmake/io/socket_ctrl.c +++ b/core/src/xmake/io/socket_ctrl.c @@ -22,8 +22,8 @@ /* ////////////////////////////////////////////////////////////////////////////////////// * trace */ -#define TB_TRACE_MODULE_NAME "socket_ctrl" -#define TB_TRACE_MODULE_DEBUG (0) +#define TB_TRACE_MODULE_NAME "socket_ctrl" +#define TB_TRACE_MODULE_DEBUG (0) /* ////////////////////////////////////////////////////////////////////////////////////// * includes @@ -35,14 +35,11 @@ */ // io.socket_ctrl(sock, code, value) -tb_int_t xm_io_socket_ctrl(lua_State* lua) -{ - // check +tb_int_t xm_io_socket_ctrl(lua_State *lua) { tb_assert_and_check_return_val(lua, 0); // check socket - if (!xm_lua_ispointer(lua, 1)) - { + if (!xm_lua_ispointer(lua, 1)) { lua_pushnumber(lua, -1); lua_pushliteral(lua, "invalid socket!"); return 2; @@ -62,4 +59,3 @@ tb_int_t xm_io_socket_ctrl(lua_State* lua) lua_pushboolean(lua, tb_socket_ctrl(sock, code, value)); return 1; } - |
