summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFranck Bui <fbui@suse.com>2015-12-11 09:55:17 +0100
committerFranck Bui <fbui@suse.com>2015-12-11 10:02:32 +0100
commit1dd9088a19f67fbadfbb10d8d668ab3eb6fa0df6 (patch)
treedce5d12b792a0a30196cdf71e12912cea915b416 /src
parentc57d67f718077aadee4e2d0940fb87f513b98671 (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.
Diffstat (limited to 'src')
-rw-r--r--src/basic/hashmap.c1
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