aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/init_wslua.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-01 14:47:57 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-01 14:47:57 +0000
commite6e2b2a9e9bd6ac9f3299031891b7d8b33d431b5 (patch)
tree8bc2c50057dbee30d348b0f5e1fbec3161d2c1dc /epan/wslua/init_wslua.c
parent940840071155170a1865998f50d6bb5fe6d5af33 (diff)
Made lua_load_script() static.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30236 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/wslua/init_wslua.c')
-rw-r--r--epan/wslua/init_wslua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wslua/init_wslua.c b/epan/wslua/init_wslua.c
index fcd321edc1..957d0f830a 100644
--- a/epan/wslua/init_wslua.c
+++ b/epan/wslua/init_wslua.c
@@ -197,7 +197,7 @@ static int lua_main_error_handler(lua_State* LS) {
return 0;
}
-void lua_load_script(const gchar* filename) {
+static void lua_load_script(const gchar* filename) {
FILE* file;
if (! ( file = ws_fopen(filename,"r")) ) {