diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-03 13:00:03 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-03 13:00:09 -0700 |
commit | b5c26758639cd934780620d4dd16854c8fdf8c34 (patch) | |
tree | a6373e93a80d1d45ecb7a71b1c9eca530668f54f | |
parent | Merge branch 'kb/status-ignored-optim-2' (diff) | |
parent | sha1_file: trivial style cleanup (diff) | |
download | tgif-b5c26758639cd934780620d4dd16854c8fdf8c34.tar.xz |
Sync with maint
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 67e815b2db..b114cc922d 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -2138,7 +2138,7 @@ void *unpack_entry(struct packed_git *p, off_t obj_offset, if (!data) die("failed to apply delta"); - free (delta_data); + free(delta_data); } *final_type = type; |