aboutsummaryrefslogtreecommitdiffstats
path: root/rawshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-07-24 00:09:16 +0000
committerGuy Harris <guy@alum.mit.edu>2013-07-24 00:09:16 +0000
commitd8022e7c5e50575dc4d858a7cf1967deb88f7492 (patch)
tree3237ffb1d6b83bb149cd7dde77035ba3a5181683 /rawshark.c
parent9e77cc4bf375e422067c037f0cf7f44da634c248 (diff)
Make some routines not used outside rawshark.c static.
svn path=/trunk/; revision=50859
Diffstat (limited to 'rawshark.c')
-rw-r--r--rawshark.c4
1 files 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();