aboutsummaryrefslogtreecommitdiffstats
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-03-07 15:59:41 -0800
committerJunio C Hamano <gitster@pobox.com>2024-03-07 15:59:41 -0800
commitf46a3f143eba661b9eb2b1e741447d6709eb6e90 (patch)
treed32f6404c5eb1ff50bcf5caa86290e08d52673fb /builtin
parent798ddfc17fbbe58494f2af0f71e0b53264ee82b5 (diff)
parent322320445630570539f7b55f376e3431f49c8405 (diff)
downloadgit-f46a3f143eba661b9eb2b1e741447d6709eb6e90.tar.gz
Merge branch 'eg/add-uflags'
Code clean-up practice. * eg/add-uflags: add: use unsigned type for collection of bits
Diffstat (limited to 'builtin')
-rw-r--r--builtin/add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/add.c b/builtin/add.c
index ada7719561..393c10cbcf 100644
--- a/builtin/add.c
+++ b/builtin/add.c
@@ -115,7 +115,7 @@ static int refresh(int verbose, const struct pathspec *pathspec)
int i, ret = 0;
char *skip_worktree_seen = NULL;
struct string_list only_match_skip_worktree = STRING_LIST_INIT_NODUP;
- int flags = REFRESH_IGNORE_SKIP_WORKTREE |
+ unsigned int flags = REFRESH_IGNORE_SKIP_WORKTREE |
(verbose ? REFRESH_IN_PORCELAIN : REFRESH_QUIET);
seen = xcalloc(pathspec->nr, 1);