aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-15 12:29:25 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-08-15 12:29:25 +0000
commitee6f48e0af6a5203a5d9b5b19a5784505acd41ec (patch)
tree3dacb4f14b51ea352afeb75e4e8db0230b75c2fa /epan/tvbuff.c
parent4c132d3d78d22455ed5c380586805744e859b1a3 (diff)
Make mem chunk static
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29432 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/tvbuff.c')
-rw-r--r--epan/tvbuff.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index 6c08ddccb1..1189f0bce5 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -59,7 +59,7 @@ static const guint8*
ensure_contiguous(tvbuff_t *tvb, gint offset, gint length);
/* We dole out tvbuff's from this memchunk. */
-GMemChunk *tvbuff_mem_chunk = NULL;
+static GMemChunk *tvbuff_mem_chunk = NULL;
void
tvbuff_init(void)
@@ -77,9 +77,6 @@ tvbuff_cleanup(void)
tvbuff_mem_chunk = NULL;
}
-
-
-
static void
tvb_init(tvbuff_t *tvb, tvbuff_type type)
{