summaryrefslogtreecommitdiff
path: root/filetap
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2014-01-10 07:01:15 +0000
committerAnders Broman <anders.broman@ericsson.com>2014-01-10 07:01:15 +0000
commit05f7044bc718524474e4f8413840a62b72019a5c (patch)
treea5a92d3362c975fc8282eab8e3c35160fe3fc3fb /filetap
parent02eb787d13ca94be1d38a44e20b5cc0701b98943 (diff)
downloadwireshark-05f7044bc718524474e4f8413840a62b72019a5c.tar.gz
Make internal functions static
svn path=/trunk/; revision=54686
Diffstat (limited to 'filetap')
-rw-r--r--filetap/file_access.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filetap/file_access.c b/filetap/file_access.c
index da130ae8ca..53a5c078d3 100644
--- a/filetap/file_access.c
+++ b/filetap/file_access.c
@@ -208,7 +208,7 @@ GSList *ftap_get_all_file_extensions_list(void)
return extensions;
}
-int empty_open(ftap *wth _U_, int *err _U_, gchar **err_info _U_)
+static int empty_open(ftap *wth _U_, int *err _U_, gchar **err_info _U_)
{
return 0;
}
@@ -423,7 +423,7 @@ static char *get_file_extension(const char *pathname)
return extensionp;
}
-gboolean heuristic_uses_extension(unsigned int i, const char *extension)
+static gboolean heuristic_uses_extension(unsigned int i, const char *extension)
{
gchar **extensions_set, **extensionp;