From 527124d8516431a01475d2609774213d8bac1d9f Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 23 Oct 2012 15:12:42 +0300 Subject: Fixed the fix... --- src/tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools.c b/src/tools.c index 801b63a..2fc7b58 100644 --- a/src/tools.c +++ b/src/tools.c @@ -1348,7 +1348,7 @@ static void lookup_native_func( lua_State* L2, lua_State* L, uint_t i) from = lua_tostring( L, -1); lua_getglobal( L2, "decoda_name"); // {} f decoda_name to = lua_tostring( L2, -1); - (void) luaL_error( L, "%s: function '%s' not found in %s destination transfer database.", from ? from : "main", to ? to : "main", fqn); + (void) luaL_error( L, "%s: function '%s' not found in %s destination transfer database.", from ? from : "main", fqn, to ? to : "main"); return; } lua_remove( L2, -2); // f -- cgit v1.2.3-55-g6feb