diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-14 16:39:14 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-14 16:39:14 -0700 |
commit | c621197a20d42b6b9115d7031bdb49e24f961898 (patch) | |
tree | 2cab7ba24afa0566325578946c8d338e09d42c10 /pack-objects.c | |
parent | Merge branch 'lt/config' into next (diff) | |
parent | git diff: support "-U" and "--unified" options properly (diff) | |
download | tgif-c621197a20d42b6b9115d7031bdb49e24f961898.tar.xz |
Merge branch 'lt/diff' into next
* lt/diff:
git diff: support "-U" and "--unified" options properly
include header to define uint32_t, necessary on Mac OS X
Diffstat (limited to 'pack-objects.c')
-rw-r--r-- | pack-objects.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pack-objects.c b/pack-objects.c index 1b9e7a1cb9..5466b15167 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"; |