Skip to content

Commit

Permalink
Merge branch 'nd/struct-pathspec'
Browse files Browse the repository at this point in the history
* nd/struct-pathspec:
  declare 1-bit bitfields to be unsigned
  • Loading branch information
Junio C Hamano committed Mar 16, 2011
2 parents a62eafb + 9ddf172 commit 276e017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -503,13 +503,13 @@ extern int ie_modified(const struct index_state *, struct cache_entry *, struct
struct pathspec {
const char **raw; /* get_pathspec() result, not freed by free_pathspec() */
int nr;
int has_wildcard:1;
int recursive:1;
unsigned int has_wildcard:1;
unsigned int recursive:1;
int max_depth;
struct pathspec_item {
const char *match;
int len;
int has_wildcard:1;
unsigned int has_wildcard:1;
} *items;
};

Expand Down

0 comments on commit 276e017

Please sign in to comment.