File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ int luaopen_private_silverchain_cinterop(lua_State *state){
101101 //functions will be only assescible by the required reciver
102102 LuaCEmbed * l = newLuaCEmbedLib (state );
103103 LuaCEmbed_add_callback (l , "generate" , private_silver_chain_lua_generator );
104- LuaCEmbed_add_callback (l , "remove " , private_silver_chain_lua_remove );
104+ LuaCEmbed_add_callback (l , "remove_source " , private_silver_chain_lua_remove );
105105 LuaCEmbed_add_callback (l , "generate_watch" , private_silver_chain_lua_generator_watch_mode );
106106 LuaCEmbed_add_callback (l , "get_error_msg" , private_silver_chain_lua_get_error_msg );
107107 LuaCEmbed_add_callback (l , "get_error_path" , private_silver_chain_lua_get_error_path );
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ public_lua_silverchain.remove = function(src)
33 if not src then
44 error (" src is required" )
55 end
6- private_silver_chain . remove (src )
6+ private_silverchain_cinterop . remove_source (src )
77end
You can’t perform that action at this time.
0 commit comments