diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-14 16:20:15 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-14 16:20:15 -0700 |
commit | 975bf9cf5ad5d440f98f464ae8124609a4835ce1 (patch) | |
tree | 46949dec51c6df5416b8190bfddc73b226a5dd2f /pack-objects.c | |
parent | 5f7f211a54cb62fba4f017cdf3b9bc0c3a7843e1 (diff) | |
parent | d9635e9c539465792b1920437b52fa8792a71650 (diff) | |
download | git-975bf9cf5ad5d440f98f464ae8124609a4835ce1.tar.gz |
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.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"; |