Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorxfguo@credosemi.com <xfguo@credosemi.com>2014-07-27 13:21:35 +0400
committerFelix Fietkau <nbd@openwrt.org>2014-07-27 13:31:07 +0400
commit6e8e6aca1d919e9916b2a1c8702d0cdec68e1ada (patch)
tree453415f189da5e1a3f89e61bfb3b972cecd1335a /lua
parent22bbcfddd7b2061343b773c3180f318e71b8d6d7 (diff)
lua/uloop: 'end' is the keyword of Lua, use 'cancel' replace it.
Signed-off-by: Xiongfei Guo <xfguo@credosemi.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/uloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/uloop.c b/lua/uloop.c
index 4abc4c3..2a0a516 100644
--- a/lua/uloop.c
+++ b/lua/uloop.c
@@ -369,7 +369,7 @@ static luaL_reg uloop_func[] = {
{"timer", ul_timer},
{"process", ul_process},
{"fd_add", ul_ufd_add},
- {"end", ul_end},
+ {"cancel", ul_end},
{NULL, NULL},
};