logcat (text): fix no previous prototype for 'logcat_text_init/logcat_text_cleanup' [-Wmissing-prototypes]

Change-Id: I1c8462064e7c07ee7f626fb26ad6bb744a7fc5b3
Reviewed-on: https://code.wireshark.org/review/17144
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2016-08-18 13:17:21 +02:00 committed by Michael Mann
parent 26464b028b
commit 2a4c11592f
1 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ static int dissect_logcat_text_long(tvbuff_t *tvb, packet_info *pinfo, proto_tre
return dissect_logcat_text(tvb, tree, pinfo, &dinfo);
}
void logcat_text_init(void)
static void logcat_text_init(void)
{
special_regex = g_regex_new(SPECIAL_STRING, G_REGEX_ANCHORED, G_REGEX_MATCH_NOTEMPTY, NULL);
brief_regex = g_regex_new(BRIEF_STRING, G_REGEX_ANCHORED, G_REGEX_MATCH_NOTEMPTY, NULL);
@ -314,7 +314,7 @@ void logcat_text_init(void)
long_regex = g_regex_new(LONG_STRING, G_REGEX_MULTILINE, G_REGEX_MATCH_NOTEMPTY, NULL);
}
void logcat_text_cleanup(void)
static void logcat_text_cleanup(void)
{
g_regex_unref(special_regex);
g_regex_unref(brief_regex);