summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d3ca6fe)
raw | patch | inline | side by side (parent: d3ca6fe)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Thu, 9 Jun 2016 21:09:18 +0000 (23:09 +0200) | ||
committer | Ruben 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 ();
^
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 | patch | blob | history | |
src/daemon/utils_cache.h | patch | blob | history |
index 321747dee17451f53e569e10a92035cadf780d91..bf8c901bd6683396cd3333a0d0784b08685eea66 100644 (file)
--- a/src/daemon/utils_cache.c
+++ b/src/daemon/utils_cache.c
/*
* Iterator interface
*/
-uc_iter_t *uc_get_iterator ()
+uc_iter_t *uc_get_iterator (void)
{
uc_iter_t *iter;
index efef31e467409c960d30079acb38ddc7a4508bb4..6c6a883cc903190077a6f937e167ab3552e728a6 100644 (file)
--- a/src/daemon/utils_cache.h
+++ b/src/daemon/utils_cache.h
* RETURN VALUE
* An iterator object on success or NULL else.
*/
-uc_iter_t *uc_get_iterator ();
+uc_iter_t *uc_get_iterator (void);
/*
* NAME