From 2609d78fa3ca09771221d8da475d5f7f59ccc1ad Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Sat, 21 May 2016 20:11:33 +0200 Subject: [PATCH] wtap_opttypes: fix no previous prototype for function 'wtap_opttype_write_data_uint64_timestamp' [-Wmissing-prototypes] Change-Id: I36244dee9cd5667d498ab0a4ba98b83e8fe84ac8 Reviewed-on: https://code.wireshark.org/review/15514 Reviewed-by: Anders Broman --- wiretap/wtap_opttypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiretap/wtap_opttypes.c b/wiretap/wtap_opttypes.c index fa6de1aee6..7ae09a3669 100644 --- a/wiretap/wtap_opttypes.c +++ b/wiretap/wtap_opttypes.c @@ -524,7 +524,7 @@ gboolean wtap_opttype_write_data_uint64(struct wtap_dumper* wdh, wtap_option_typ return TRUE; } -gboolean wtap_opttype_write_data_uint64_timestamp(struct wtap_dumper* wdh, wtap_option_type* data, int *err) +static gboolean wtap_opttype_write_data_uint64_timestamp(struct wtap_dumper* wdh, wtap_option_type* data, int *err) { guint32 high, low;