Code

uc_get_iterator: use ansi function declaration
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Thu, 9 Jun 2016 21:09:18 +0000 (23:09 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Thu, 9 Jun 2016 21:09:18 +0000 (23:09 +0200)
In file included from common.c:37:0:
utils_cache.h:76:1: warning: function declaration isn’t a prototype
[-Wstrict-prototypes]
 uc_iter_t *uc_get_iterator ();
 ^

src/daemon/utils_cache.c
src/daemon/utils_cache.h

index 321747dee17451f53e569e10a92035cadf780d91..bf8c901bd6683396cd3333a0d0784b08685eea66 100644 (file)
@@ -879,7 +879,7 @@ int uc_inc_hits (const data_set_t *ds, const value_list_t *vl, int step)
 /*
  * Iterator interface
  */
-uc_iter_t *uc_get_iterator ()
+uc_iter_t *uc_get_iterator (void)
 {
   uc_iter_t *iter;
 
index efef31e467409c960d30079acb38ddc7a4508bb4..6c6a883cc903190077a6f937e167ab3552e728a6 100644 (file)
@@ -73,7 +73,7 @@ typedef struct uc_iter_s uc_iter_t;
  * RETURN VALUE
  *   An iterator object on success or NULL else.
  */
-uc_iter_t *uc_get_iterator ();
+uc_iter_t *uc_get_iterator (void);
 
 /*
  * NAME