From b13523ca8bdaa902c65cec272b40735508f70b60 Mon Sep 17 00:00:00 2001 From: Lionel Gauthier <lionel.gauthier@eurecom.fr> Date: Thu, 30 Apr 2015 09:41:22 +0000 Subject: [PATCH] Sebastian Held patches15/0029-fix-compiler-warning.patch git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7331 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair2/UTIL/OMG/omg_hashtable.c | 2 +- openair2/UTIL/OMG/omg_hashtable.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openair2/UTIL/OMG/omg_hashtable.c b/openair2/UTIL/OMG/omg_hashtable.c index eabe338d43..2528c0e80e 100644 --- a/openair2/UTIL/OMG/omg_hashtable.c +++ b/openair2/UTIL/OMG/omg_hashtable.c @@ -51,7 +51,7 @@ * @returns hash_table_element_t object when success * @returns NULL when no memory */ -hash_table_element_t * hash_table_element_new() +hash_table_element_t * hash_table_element_new(void) { //INFO("creating a new hash table element"); return calloc(1, hash_table_element_s); diff --git a/openair2/UTIL/OMG/omg_hashtable.h b/openair2/UTIL/OMG/omg_hashtable.h index 8abeeea0f3..8c4003e53b 100644 --- a/openair2/UTIL/OMG/omg_hashtable.h +++ b/openair2/UTIL/OMG/omg_hashtable.h @@ -130,7 +130,7 @@ typedef struct omg_hash_table_s { * @returns hash_table_element_t object when success * @returns NULL when no memory */ -hash_table_element_t * hash_table_element_new(); +hash_table_element_t * hash_table_element_new(void); /** * Function to delete an hash table element -- GitLab