diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-05-30 08:56:21 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-03 10:14:48 -0700 |
commit | 4b8f772ce4df667583243e434ca0548d5b84b3a6 (patch) | |
tree | 04a3c8c25d822d04d79ce57abe66f6fbfdc8c9a2 | |
parent | Start 1.8.3.1 maintenance track (diff) | |
download | tgif-4b8f772ce4df667583243e434ca0548d5b84b3a6.tar.xz |
sha1_file: trivial style cleanup
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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; |