Include common.h in hashtable.h

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 <cmn@elego.de>
This commit is contained in:
Carlos Martín Nieto 2011-07-05 14:36:22 +02:00
parent f12aa9dc5e
commit 8f63d54cb6

View File

@ -4,6 +4,7 @@
#include "git2/common.h" #include "git2/common.h"
#include "git2/oid.h" #include "git2/oid.h"
#include "git2/odb.h" #include "git2/odb.h"
#include "common.h"
#define GIT_HASHTABLE_HASHES 3 #define GIT_HASHTABLE_HASHES 3