From 8f63d54cb6be013a324338c4177c803701755468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 5 Jul 2011 14:36:22 +0200 Subject: [PATCH] Include common.h in hashtable.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this, hashtable.h doesn't know what uint32_t is and the compiler thinks that it's a function type. Signed-off-by: Carlos Martín Nieto --- src/hashtable.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hashtable.h b/src/hashtable.h index 3a4e6a7e3..be21be2b1 100644 --- a/src/hashtable.h +++ b/src/hashtable.h @@ -4,6 +4,7 @@ #include "git2/common.h" #include "git2/oid.h" #include "git2/odb.h" +#include "common.h" #define GIT_HASHTABLE_HASHES 3