From: Lennart Poettering Date: Mon, 22 Feb 2016 17:40:28 +0000 (+0100) Subject: hashmap: use void* and uint8_t* for generic pointers X-Git-Tag: v231.3~230 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=45e507a05750d43384bfbe90b8b22dfb5a1c5d2a;hp=45e507a05750d43384bfbe90b8b22dfb5a1c5d2a;p=elogind.git hashmap: use void* and uint8_t* for generic pointers As suggested by CODING_STYLE we should use "void*" as type for generic memory, and uint8_t* for generic bytes. Hence use that instead of "char*", which should really be used only for strings these days. ---