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
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2021-11-04 13:31:28 +0300
committerStijn Tintel <stijn@linux-ipv6.be>2021-11-04 14:05:29 +0300
commitc87d3e1fb67d169f484e22f18572b5329f1267ee (patch)
treef2ae5517d5bbb0100616f328e5127d6b5e50563c
parent3344157381505e343b334e2eb6c60c9d3318e5bb (diff)
lua/uloop: use uloop_timeout_remaining64
We will deprecate uloop_timeout_remaining soon. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be> Acked-by: Jo-Philipp Wich <jo@mein.io> Acked-by: John Crispin <john@phrozen.org>
-rw-r--r--lua/uloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/uloop.c b/lua/uloop.c
index ee82104..7e9ed10 100644
--- a/lua/uloop.c
+++ b/lua/uloop.c
@@ -99,7 +99,7 @@ static int ul_timer_remaining(lua_State *L)
struct lua_uloop_timeout *tout;
tout = lua_touserdata(L, 1);
- lua_pushnumber(L, uloop_timeout_remaining(&tout->t));
+ lua_pushnumber(L, uloop_timeout_remaining64(&tout->t));
return 1;
}