summaryrefslogtreecommitdiff
path: root/asn1/camel
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-08-20 19:34:47 +0200
committerAnders Broman <a.broman58@gmail.com>2015-08-21 04:57:30 +0000
commit8f0fc4ba77739957ca1bc70d801ff7ee50ef91e9 (patch)
treeec043ebf6883abd5389919e59994d00a3e361c34 /asn1/camel
parentfab0e59c70bfd8e39189ac29b17333d85d4645cb (diff)
downloadwireshark-8f0fc4ba77739957ca1bc70d801ff7ee50ef91e9.tar.gz
GSM/ANSI/CAMEL...: fix no previous prototype for '*_stat_init' [-Wmissing-prototypes]
Change-Id: I0aedefbb77899ebceac7fb08249faf47964d785b Reviewed-on: https://code.wireshark.org/review/10163 Reviewed-by: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'asn1/camel')
-rw-r--r--asn1/camel/packet-camel-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/camel/packet-camel-template.c b/asn1/camel/packet-camel-template.c
index f1db94a8ea..374c4488fd 100644
--- a/asn1/camel/packet-camel-template.c
+++ b/asn1/camel/packet-camel-template.c
@@ -1225,7 +1225,7 @@ typedef enum
static stat_tap_table_item camel_stat_fields[] = {{TABLE_ITEM_STRING, TAP_ALIGN_LEFT, "Message Type or Reason", "%-25s"}, {TABLE_ITEM_UINT, TAP_ALIGN_RIGHT, "Count", "%d"}};
-void camel_stat_init(new_stat_tap_ui* new_stat, new_stat_tap_gui_init_cb gui_callback, void* gui_data)
+static void camel_stat_init(new_stat_tap_ui* new_stat, new_stat_tap_gui_init_cb gui_callback, void* gui_data)
{
int num_fields = sizeof(camel_stat_fields)/sizeof(stat_tap_table_item);
new_stat_tap_table* table = new_stat_tap_init_table("CAMEL Message Counters", num_fields, 0, NULL, gui_callback, gui_data);