On Fri, Apr 26, 2013 at 06:40:08PM +0200, Daniel Buch wrote: > --- > src/shared/hashmap.h | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/src/shared/hashmap.h b/src/shared/hashmap.h > index 26bd030..f52517f 100644 > --- a/src/shared/hashmap.h > +++ b/src/shared/hashmap.h > @@ -57,11 +57,11 @@ int hashmap_ensure_allocated(Hashmap **h, hash_func_t > hash_func, compare_func_t > int hashmap_put(Hashmap *h, const void *key, void *value); > int hashmap_update(Hashmap *h, const void *key, void *value); > int hashmap_replace(Hashmap *h, const void *key, void *value); > -void* hashmap_get(Hashmap *h, const void *key); > -void* hashmap_get2(Hashmap *h, const void *key, void **rkey); > +void *hashmap_get(Hashmap *h, const void *key); > +void *hashmap_get2(Hashmap *h, const void *key, void **rkey); > bool hashmap_contains(Hashmap *h, const void *key); > -void* hashmap_remove(Hashmap *h, const void *key); > -void* hashmap_remove_value(Hashmap *h, const void *key, void *value); > +void *hashmap_remove(Hashmap *h, const void *key); > +void *hashmap_remove_value(Hashmap *h, const void *key, void *value); > int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void > *new_key, void *value);
I find the updated version actually harder to read. We seem to consistently use 'char* xxx()', and 'void* xxx' is more common than 'void *xxx'. Zbyszek _______________________________________________ systemd-devel mailing list systemd-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/systemd-devel