From 4ebd0361e4cc6edb0483f3280db50fa56621f0fc Mon Sep 17 00:00:00 2001 From: Mitchell Blank Jr Date: Sat, 19 May 2012 23:16:54 -0700 Subject: Helper functions for st_foreach() return "enum st_retval" not "int" Just making this a bit more consistent throughout the code --- src/st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/st.c') diff --git a/src/st.c b/src/st.c index 777a03bd2..c0597395d 100644 --- a/src/st.c +++ b/src/st.c @@ -404,7 +404,7 @@ st_delete(register st_table *table, register st_data_t *key, st_data_t *value) } int -st_foreach(st_table *table, int (*func)(ANYARGS), st_data_t arg) +st_foreach(st_table *table, enum st_retval (*func)(ANYARGS), st_data_t arg) { st_table_entry *ptr, **last, *tmp; enum st_retval retval; @@ -572,7 +572,7 @@ numhash(long n) } #if 0 -static int +static enum st_retval f(st_data_t key, st_data_t val, st_data_t a) { printf("tbl=%p key=%s val=%s\n", (st_table*)a, (char*)key, (char*)val); -- cgit v1.2.3