Commit b13523ca authored by Lionel Gauthier's avatar Lionel Gauthier

Sebastian Held patches15/0029-fix-compiler-warning.patch

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7331 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent b4a2c3a5
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
* @returns hash_table_element_t object when success * @returns hash_table_element_t object when success
* @returns NULL when no memory * @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"); //INFO("creating a new hash table element");
return calloc(1, hash_table_element_s); return calloc(1, hash_table_element_s);
......
...@@ -130,7 +130,7 @@ typedef struct omg_hash_table_s { ...@@ -130,7 +130,7 @@ typedef struct omg_hash_table_s {
* @returns hash_table_element_t object when success * @returns hash_table_element_t object when success
* @returns NULL when no memory * @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 * Function to delete an hash table element
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment