summaryrefslogtreecommitdiff
path: root/pack-objects.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-14 23:20:15 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-14 23:20:15 (GMT)
commit975bf9cf5ad5d440f98f464ae8124609a4835ce1 (patch)
tree46949dec51c6df5416b8190bfddc73b226a5dd2f /pack-objects.c
parent5f7f211a54cb62fba4f017cdf3b9bc0c3a7843e1 (diff)
parentd9635e9c539465792b1920437b52fa8792a71650 (diff)
downloadgit-975bf9cf5ad5d440f98f464ae8124609a4835ce1.zip
git-975bf9cf5ad5d440f98f464ae8124609a4835ce1.tar.gz
git-975bf9cf5ad5d440f98f464ae8124609a4835ce1.tar.bz2
Merge branch 'fix'
* fix: include header to define uint32_t, necessary on Mac OS X
Diffstat (limited to 'pack-objects.c')
-rw-r--r--pack-objects.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pack-objects.c b/pack-objects.c
index 1b9e7a1..5466b15 100644
--- a/pack-objects.c
+++ b/pack-objects.c
@@ -10,6 +10,7 @@
#include "tree-walk.h"
#include <sys/time.h>
#include <signal.h>
+#include <stdint.h>
static const char pack_usage[] = "git-pack-objects [-q] [--no-reuse-delta] [--non-empty] [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list";