From 0b516e9490b51bdd15c347fcda35b5dbb06b4829 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 20 Mar 2024 09:09:27 +0100 Subject: C++ migration: bool_t → bool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/keeper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/keeper.cpp') diff --git a/src/keeper.cpp b/src/keeper.cpp index 10fba2b..1e344f2 100644 --- a/src/keeper.cpp +++ b/src/keeper.cpp @@ -397,7 +397,7 @@ int keepercall_limit( lua_State* L) //out: true or nil int keepercall_set( lua_State* L) { - bool_t should_wake_writers = FALSE; + bool should_wake_writers{ false }; STACK_GROW( L, 6); // retrieve fifos associated with the linda -- cgit v1.2.3-55-g6feb