Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'rs/pack-objects-pbase-cleanup' into maint
author
Junio C Hamano
<gitster@pobox.com>
Wed, 23 Aug 2017 21:33:48 +0000
(14:33 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 23 Aug 2017 21:33:48 +0000
(14:33 -0700)
Code clean-up.
* rs/pack-objects-pbase-cleanup:
pack-objects: remove unnecessary NULL check
builtin/pack-objects.c
patch
|
blob
|
history
raw
(from parent 1:
697f11b
)
diff --git
a/builtin/pack-objects.c
b/builtin/pack-objects.c
index e730b415bfdbe5f00e08cb28c8cced817067cfee..c753e9237a8d5981a17e872db33d5326bd8d7eab 100644
(file)
--- a/
builtin/pack-objects.c
+++ b/
builtin/pack-objects.c
@@
-1289,7
+1289,7
@@
static int done_pbase_path_pos(unsigned hash)
static int check_pbase_path(unsigned hash)
{
- int pos =
(!done_pbase_paths) ? -1 :
done_pbase_path_pos(hash);
+ int pos = done_pbase_path_pos(hash);
if (0 <= pos)
return 1;
pos = -pos - 1;