summaryrefslogtreecommitdiff
path: root/ui/recent.c
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2014-07-11 09:34:38 +0200
committerAnders Broman <a.broman58@gmail.com>2014-07-11 07:36:05 +0000
commit423b5315a44061f5925b9f97e00f8226d9615996 (patch)
treedc6ba026cfb9e704c68b0dc29ce781b9ab9ed3c5 /ui/recent.c
parentbc8e095ec8b7a3b69412b09c129f3635c732d357 (diff)
downloadwireshark-423b5315a44061f5925b9f97e00f8226d9615996.tar.gz
Try to fix the build.
Change-Id: I06e813db6af41d9fa4effcf2b23cf91d72c8c0ec Reviewed-on: https://code.wireshark.org/review/2998 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/recent.c')
-rw-r--r--ui/recent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/recent.c b/ui/recent.c
index e25cb78b23..bdb93e7c5c 100644
--- a/ui/recent.c
+++ b/ui/recent.c
@@ -369,7 +369,7 @@ recent_add_cfilter(const gchar *ifname, const gchar *s)
#ifdef HAVE_PCAP_REMOTE
static GHashTable *remote_host_list=NULL;
-int recent_get_remote_host_list_size()
+int recent_get_remote_host_list_size(void)
{
return g_hash_table_size (remote_host_list);
}
@@ -395,7 +395,7 @@ free_remote_host (gpointer key _U_, gpointer value, gpointer user _U_)
return TRUE;
}
-GHashTable *get_remote_host_list()
+GHashTable *get_remote_host_list(void)
{
return remote_host_list;
}
@@ -419,7 +419,7 @@ capture_remote_combo_recent_write_all(FILE *rf)
}
-void free_remote_host_list()
+void free_remote_host_list(void)
{
g_hash_table_foreach_remove(remote_host_list, free_remote_host, NULL);
}