From d8022e7c5e50575dc4d858a7cf1967deb88f7492 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 24 Jul 2013 00:09:16 +0000 Subject: [PATCH] Make some routines not used outside rawshark.c static. svn path=/trunk/; revision=50859 --- rawshark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rawshark.c b/rawshark.c index 69e417b495..c06855a541 100644 --- a/rawshark.c +++ b/rawshark.c @@ -1572,7 +1572,7 @@ open_failure_message(const char *filename, int err, gboolean for_writing) fprintf(stderr, "\n"); } -const nstime_t * +static const nstime_t * raw_get_frame_ts(void *data _U_, guint32 frame_num) { if (ref && ref->num == frame_num) @@ -1587,7 +1587,7 @@ raw_get_frame_ts(void *data _U_, guint32 frame_num) return NULL; } -epan_t * +static epan_t * raw_epan_new(capture_file *cf) { epan_t *epan = epan_new();