From: Michael Haggerty Date: Thu, 12 Feb 2015 11:12:13 +0000 (+0100) Subject: refs: remove the gap in the REF_* constant values X-Git-Tag: v2.4.0-rc0~73^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31e79f0a54e57454a9677eeb8b1108e4f907b8b9;p=thirdparty%2Fgit.git refs: remove the gap in the REF_* constant values There is no reason to "reserve" a gap between the public and private flags values. Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/refs.c b/refs.c index 5e6355c930..4de13833c8 100644 --- a/refs.c +++ b/refs.c @@ -44,7 +44,8 @@ static unsigned char refname_disposition[256] = { * Used as a flag to ref_transaction_delete when a loose ref is being * pruned. */ -#define REF_ISPRUNING 0x0100 +#define REF_ISPRUNING 0x04 + /* * Try to read one refname component from the front of refname. * Return the length of the component found, or -1 if the component is