diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-04-06 11:38:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-06 11:38:59 -0700 |
commit | 12508a83549e59f0160ada423997069bf4a4003f (patch) | |
tree | 97be7bcf3625b3f1a12d326a3d7aa3c57ab9b2d3 /attr.c | |
parent | 6a269e52a5d0c82567c5b39cc194cc90f9fa9156 (diff) | |
parent | f870899864e077a54776af838c6476d5850cfaaf (diff) | |
download | git-12508a83549e59f0160ada423997069bf4a4003f.tar.gz |
Merge branch 'ss/exc-flag-is-a-collection-of-bits'
Code clean-up.
* ss/exc-flag-is-a-collection-of-bits:
dir: store EXC_FLAG_* values in unsigned integers
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ struct pattern { const char *pattern; int patternlen; int nowildcardlen; - int flags; /* EXC_FLAG_* */ + unsigned flags; /* EXC_FLAG_* */ }; /* |