diff options
author | Franck Bui <fbui@suse.com> | 2015-12-11 09:55:17 +0100 |
---|---|---|
committer | Franck Bui <fbui@suse.com> | 2015-12-11 10:02:32 +0100 |
commit | 1dd9088a19f67fbadfbb10d8d668ab3eb6fa0df6 (patch) | |
tree | dce5d12b792a0a30196cdf71e12912cea915b416 | |
parent | c57d67f718077aadee4e2d0940fb87f513b98671 (diff) |
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.
-rw-r--r-- | src/basic/hashmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c index b3954e3223..286ddfef5b 100644 --- a/src/basic/hashmap.c +++ b/src/basic/hashmap.c @@ -37,6 +37,7 @@ #include "util.h" #ifdef ENABLE_DEBUG_HASHMAP +#include <pthread.h> #include "list.h" #endif |