aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_util.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-10-11 16:27:37 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-10-11 16:27:37 +0000
commitca0379ca2aafaa4ee058e86bf00324742498e936 (patch)
tree3279fbb000ed4e186875e37defc90c31ae6e324e /epan/wslua/wslua_util.c
parent6d1dae6f2839252882e115e643eac884a38326e1 (diff)
Make more functions static.
svn path=/trunk/; revision=30517
Diffstat (limited to 'epan/wslua/wslua_util.c')
-rw-r--r--epan/wslua/wslua_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_util.c b/epan/wslua/wslua_util.c
index 066cb548b1..05fe37ebae 100644
--- a/epan/wslua/wslua_util.c
+++ b/epan/wslua/wslua_util.c
@@ -386,12 +386,12 @@ typedef struct _statcmd_t {
int func_ref;
} statcmd_t;
-int statcmd_init_cb_error_handler(lua_State* L) {
+static int statcmd_init_cb_error_handler(lua_State* L) {
(void)L;
return 0;
}
-void statcmd_init(const char *optarg, void* userdata) {
+static void statcmd_init(const char *optarg, void* userdata) {
statcmd_t* sc = userdata;
lua_State* L = sc->L;