From: Franck Bui Date: Fri, 11 Dec 2015 08:55:17 +0000 (+0100) Subject: hashmap: re-add missing header file pthread.h X-Git-Tag: v229~164^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1dd9088a19f67fbadfbb10d8d668ab3eb6fa0df6;p=thirdparty%2Fsystemd.git hashmap: re-add missing header file pthread.h Commit 11c3a36649e5e removed pthread.h inclusion in src/basic/hashmap.c but this header file is neeeded when ENABLE_DEBUG_HASHMAP is defined. --- diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c index b3954e3223b..286ddfef5b3 100644 --- a/src/basic/hashmap.c +++ b/src/basic/hashmap.c @@ -37,6 +37,7 @@ #include "util.h" #ifdef ENABLE_DEBUG_HASHMAP +#include #include "list.h" #endif