diff options
author | 卜部昌平 <[email protected]> | 2020-02-07 14:14:05 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2020-02-07 14:24:19 +0900 |
commit | 115fec062ccf7c6d72c8d5f64b7a5d84c9fb2dd8 (patch) | |
tree | 24639dba7b24afdd604b5d8c5b9e9f06d3d91faa /st.c | |
parent | 6ed1a5e0e62bbdadcf3d0c61fcfe0c5f8d01789b (diff) |
more on NULL versus functions.
Function pointers are not void*. See also
ce4ea956d24eab5089a143bba38126f2b11b55b6
8427fca49bd85205f5a8766292dd893f003c0e48
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1721,7 +1721,7 @@ int st_foreach(st_table *tab, st_foreach_callback_func *func, st_data_t arg) { const struct functor f = { func, arg }; - return st_general_foreach(tab, apply_functor, NULL, (st_data_t)&f, FALSE); + return st_general_foreach(tab, apply_functor, 0, (st_data_t)&f, FALSE); } /* See comments for function st_delete_safe. */ @@ -1729,7 +1729,7 @@ int st_foreach_check(st_table *tab, st_foreach_check_callback_func *func, st_data_t arg, st_data_t never ATTRIBUTE_UNUSED) { - return st_general_foreach(tab, func, NULL, arg, TRUE); + return st_general_foreach(tab, func, 0, arg, TRUE); } /* Set up array KEYS by at most SIZE keys of head table TAB entries. |