aboutsummaryrefslogtreecommitdiff
path: root/attr.c
diff options
context:
space:
mode:
authorSaurav Sachidanand <sauravsachidanand@gmail.com>2016-03-01 22:32:59 +0530
committerJunio C Hamano <gitster@pobox.com>2016-03-01 10:20:22 -0800
commitf870899864e077a54776af838c6476d5850cfaaf (patch)
tree0b9482b7e660103342c9464c47167a0b7c3709fa /attr.c
parenta2558fb8e1e387b630312311e1d22c95663da5d0 (diff)
downloadgit-f870899864e077a54776af838c6476d5850cfaaf.tar.gz
git-f870899864e077a54776af838c6476d5850cfaaf.tar.xz
dir: store EXC_FLAG_* values in unsigned integers
The values defined by the macro EXC_FLAG_* (1, 4, 8, 16) are stored in fields of the structs "pattern" and "exclude", some functions arguments and a local variable. None of these uses its most significant bit in any special way and there is no good reason to use a signed integer for them. And while we're at it, document "flags" of "exclude" to explicitly state the values it's supposed to take on. Signed-off-by: Saurav Sachidanand <sauravsachidanand@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.c')
-rw-r--r--attr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/attr.c b/attr.c
index 8f2ac6c88..e273f7a3e 100644
--- a/attr.c
+++ b/attr.c
@@ -124,7 +124,7 @@ struct pattern {
const char *pattern;
int patternlen;
int nowildcardlen;
- int flags; /* EXC_FLAG_* */
+ unsigned flags; /* EXC_FLAG_* */
};
/*