Fix warning: no previous prototype for ... [-Wmissing-prototypes]

Add static before function

Change-Id: I64e50f0b0349a2ba21cd5d8b8c9ea22e6e960eb3
Reviewed-on: https://code.wireshark.org/review/3692
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-08-15 09:55:56 +02:00 committed by Anders Broman
parent c8646fa310
commit 7b2c3cd141
1 changed files with 2 additions and 2 deletions

View File

@ -1595,7 +1595,7 @@ static const value_string picmg_24_controls[] = {
{ 0, NULL }
};
void
static void
fmt_power_amps(gchar *s, guint32 v)
{
g_snprintf(s, ITEM_LABEL_LENGTH, "%d.%dA", v / 10, v % 10);
@ -1703,7 +1703,7 @@ static const value_string cc28[] = {
{ 0, NULL }
};
void
static void
fmt_100ms(gchar *s, guint32 v)
{
g_snprintf(s, ITEM_LABEL_LENGTH, "%d.%dS", v / 10, v % 10);