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>
This commit is contained in:

committed by
Junio C Hamano

parent
a2558fb8e1
commit
f870899864
8
dir.c
8
dir.c
@ -441,7 +441,7 @@ int no_wildcard(const char *string)
|
||||
|
||||
void parse_exclude_pattern(const char **pattern,
|
||||
int *patternlen,
|
||||
int *flags,
|
||||
unsigned *flags,
|
||||
int *nowildcardlen)
|
||||
{
|
||||
const char *p = *pattern;
|
||||
@ -482,7 +482,7 @@ void add_exclude(const char *string, const char *base,
|
||||
{
|
||||
struct exclude *x;
|
||||
int patternlen;
|
||||
int flags;
|
||||
unsigned flags;
|
||||
int nowildcardlen;
|
||||
|
||||
parse_exclude_pattern(&string, &patternlen, &flags, &nowildcardlen);
|
||||
@ -663,7 +663,7 @@ void add_excludes_from_file(struct dir_struct *dir, const char *fname)
|
||||
|
||||
int match_basename(const char *basename, int basenamelen,
|
||||
const char *pattern, int prefix, int patternlen,
|
||||
int flags)
|
||||
unsigned flags)
|
||||
{
|
||||
if (prefix == patternlen) {
|
||||
if (patternlen == basenamelen &&
|
||||
@ -688,7 +688,7 @@ int match_basename(const char *basename, int basenamelen,
|
||||
int match_pathname(const char *pathname, int pathlen,
|
||||
const char *base, int baselen,
|
||||
const char *pattern, int prefix, int patternlen,
|
||||
int flags)
|
||||
unsigned flags)
|
||||
{
|
||||
const char *name;
|
||||
int namelen;
|
||||
|
Reference in New Issue
Block a user