diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2012-10-23 15:12:42 +0300 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2012-10-23 15:12:42 +0300 |
commit | 527124d8516431a01475d2609774213d8bac1d9f (patch) | |
tree | ecbf1ba7804b219e3aedd24f887007566feecd41 | |
parent | 640ea0fb3df69dd7b629bb6060d753277590605d (diff) | |
download | lanes-527124d8516431a01475d2609774213d8bac1d9f.tar.gz lanes-527124d8516431a01475d2609774213d8bac1d9f.tar.bz2 lanes-527124d8516431a01475d2609774213d8bac1d9f.zip |
Fixed the fix...
-rw-r--r-- | src/tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1348 | from = lua_tostring( L, -1); | 1348 | from = lua_tostring( L, -1); |
1349 | lua_getglobal( L2, "decoda_name"); // {} f decoda_name | 1349 | lua_getglobal( L2, "decoda_name"); // {} f decoda_name |
1350 | to = lua_tostring( L2, -1); | 1350 | to = lua_tostring( L2, -1); |
1351 | (void) luaL_error( L, "%s: function '%s' not found in %s destination transfer database.", from ? from : "main", to ? to : "main", fqn); | 1351 | (void) luaL_error( L, "%s: function '%s' not found in %s destination transfer database.", from ? from : "main", fqn, to ? to : "main"); |
1352 | return; | 1352 | return; |
1353 | } | 1353 | } |
1354 | lua_remove( L2, -2); // f | 1354 | lua_remove( L2, -2); // f |