aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-12-27 10:49:35 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-12-27 10:49:35 +0000
commitd0915cabb3001ba3d7e796dd489e309e9aa2a4ce (patch)
tree36c7e8c7c9e5ddf28a27eb7abe5f3aec0a79798f /epan/conversation.c
parentfa2c0bb556de44faaf14e537723643ce4b7f6b0e (diff)
Fix [-Wmissing-prototypes]
svn path=/trunk/; revision=54473
Diffstat (limited to 'epan/conversation.c')
-rw-r--r--epan/conversation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/conversation.c b/epan/conversation.c
index 848775b1a3..b99fe4c4a9 100644
--- a/epan/conversation.c
+++ b/epan/conversation.c
@@ -541,7 +541,7 @@ conversation_init(void)
*
* Mostly adapted from the old conversation_new().
*/
-void
+static void
conversation_insert_into_hashtable(GHashTable *hashtable, conversation_t *conv)
{
conversation_t *chain_head, *chain_tail, *cur, *prev;
@@ -595,7 +595,7 @@ conversation_insert_into_hashtable(GHashTable *hashtable, conversation_t *conv)
* Does the right thing when removing from one of the conversation hash tables,
* taking into account ordering and hash chains and all that good stuff.
*/
-void
+static void
conversation_remove_from_hashtable(GHashTable *hashtable, conversation_t *conv)
{
conversation_t *chain_head, *cur, *prev;