aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_pinfo.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_pinfo.c
parent6d1dae6f2839252882e115e643eac884a38326e1 (diff)
Make more functions static.
svn path=/trunk/; revision=30517
Diffstat (limited to 'epan/wslua/wslua_pinfo.c')
-rw-r--r--epan/wslua/wslua_pinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_pinfo.c b/epan/wslua/wslua_pinfo.c
index f1586e983a..faaa670b0d 100644
--- a/epan/wslua/wslua_pinfo.c
+++ b/epan/wslua/wslua_pinfo.c
@@ -740,7 +740,7 @@ static int pushnil_param(lua_State* L, packet_info* pinfo _U_, pinfo_param_type_
return 1;
}
-int Pinfo_set_addr(lua_State* L, packet_info* pinfo, pinfo_param_type_t pt) {
+static int Pinfo_set_addr(lua_State* L, packet_info* pinfo, pinfo_param_type_t pt) {
const address* from = checkAddress(L,1);
address* to;
@@ -782,7 +782,7 @@ int Pinfo_set_addr(lua_State* L, packet_info* pinfo, pinfo_param_type_t pt) {
return 0;
}
-int Pinfo_set_int(lua_State* L, packet_info* pinfo, pinfo_param_type_t pt) {
+static int Pinfo_set_int(lua_State* L, packet_info* pinfo, pinfo_param_type_t pt) {
gint64 v = luaL_checkint(L,1);
if (!pinfo) {