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 | Merge branch 'ml/cvs' (diff) | |
| parent | include header to define uint32_t, necessary on Mac OS X (diff) | |
| download | git-975bf9cf5ad5d440f98f464ae8124609a4835ce1.tar.gz git-975bf9cf5ad5d440f98f464ae8124609a4835ce1.zip | |
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"; |
