aboutsummaryrefslogtreecommitdiff
path: root/pack-objects.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-14 16:20:09 -0700
committerJunio C Hamano <junkio@cox.net>2006-05-14 16:20:09 -0700
commit3f22deb7f58dff426a0853de62cc553ec97d6bf8 (patch)
tree281a426f68823461874bf3d418ef217210e229fa /pack-objects.c
parentd14f776402d9f7040cc71ff6e3b992b2e019526a (diff)
parentd9635e9c539465792b1920437b52fa8792a71650 (diff)
downloadgit-3f22deb7f58dff426a0853de62cc553ec97d6bf8.tar.xz
Merge branch 'fix' into maint
* 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 a81d609b26..aa2c098617 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";