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:
authorJohn Crispin <blogic@openwrt.org>2012-09-29 03:11:31 +0400
committerFelix Fietkau <nbd@openwrt.org>2012-09-29 03:15:54 +0400
commit6ba84c7623d3fd3f22576c95baf240df67513d06 (patch)
tree9ec381cc92353c9022336fe67afed54fe96d8b7a /lua
parent0a81131257609b63040e8ccedbc65223da893d79 (diff)
rename proc_cb to ul_process_cb
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'lua')
-rw-r--r--lua/uloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/uloop.c b/lua/uloop.c
index 0f0c878..41ffff5 100644
--- a/lua/uloop.c
+++ b/lua/uloop.c
@@ -126,7 +126,7 @@ static int ul_timer(lua_State *L)
return 1;
}
-static void proc_cb(struct uloop_process *p, int ret)
+static void ul_process_cb(struct uloop_process *p, int ret)
{
struct lua_uloop_process *proc = container_of(p, struct lua_uloop_process, p);
@@ -196,7 +196,7 @@ static int ul_process(lua_State *L)
proc->r = ref;
proc->p.pid = pid;
- proc->p.cb = proc_cb;
+ proc->p.cb = ul_process_cb;
uloop_process_add(&proc->p);
return 1;