diff options
| author | Junio C Hamano <gitster@pobox.com> | 2009-06-20 21:46:10 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2009-06-20 21:46:10 -0700 |
| commit | 7c74c3926ad60ba1bbfed13355f00a29813a0f32 (patch) | |
| tree | 45d5169b6377988e617a9d1a2096b98f31d07a49 /builtin-unpack-objects.c | |
| parent | Merge git://git.kernel.org/pub/scm/gitk/gitk (diff) | |
| parent | Fix big left-shifts of unsigned char (diff) | |
| download | git-7c74c3926ad60ba1bbfed13355f00a29813a0f32.tar.gz git-7c74c3926ad60ba1bbfed13355f00a29813a0f32.zip | |
Merge branch 'lt/maint-unsigned-left-shift'
* lt/maint-unsigned-left-shift:
Fix big left-shifts of unsigned char
Diffstat (limited to 'builtin-unpack-objects.c')
| -rw-r--r-- | builtin-unpack-objects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-unpack-objects.c b/builtin-unpack-objects.c index 9a773239ca..8e831be476 100644 --- a/builtin-unpack-objects.c +++ b/builtin-unpack-objects.c @@ -422,8 +422,8 @@ static void unpack_delta_entry(enum object_type type, unsigned long delta_size, static void unpack_one(unsigned nr) { unsigned shift; - unsigned char *pack, c; - unsigned long size; + unsigned char *pack; + unsigned long size, c; enum object_type type; obj_list[nr].offset = consumed_bytes; |
