aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_tvb.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_tvb.c
parent6d1dae6f2839252882e115e643eac884a38326e1 (diff)
Make more functions static.
svn path=/trunk/; revision=30517
Diffstat (limited to 'epan/wslua/wslua_tvb.c')
-rw-r--r--epan/wslua/wslua_tvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wslua/wslua_tvb.c b/epan/wslua/wslua_tvb.c
index f2eaa65656..abfc9617c9 100644
--- a/epan/wslua/wslua_tvb.c
+++ b/epan/wslua/wslua_tvb.c
@@ -493,7 +493,7 @@ WSLUA_CLASS_DEFINE(TvbRange,FAIL_ON_NULL("expired tvbrange"),NOP);
TvbRanges are created by calling a tvb (e.g. tvb(offset,length)). If the TvbRange span is outside the Tvb's range the creation will cause a runtime error.
*/
-TvbRange new_TvbRange(lua_State* L, tvbuff_t* ws_tvb, int offset, int len) {
+static TvbRange new_TvbRange(lua_State* L, tvbuff_t* ws_tvb, int offset, int len) {
TvbRange tvbr;