diff options
author | Elijah Newren <newren@gmail.com> | 2019-04-05 08:00:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-04-08 16:02:07 +0900 |
commit | 5ec1e72823735b5682389589b6bee774ae70fa49 (patch) | |
tree | 3780b0e33a6ddaaf42f7bfca192fc1fced100922 /builtin/rm.c | |
parent | The third batch (diff) | |
download | tgif-5ec1e72823735b5682389589b6bee774ae70fa49.tar.xz |
Use 'unsigned short' for mode, like diff_filespec does
struct diff_filespec defines mode to be an 'unsigned short'. Several
other places in the API which we'd like to interact with using a
diff_filespec used a plain unsigned (or unsigned int). This caused
problems when taking addresses, so switch to unsigned short.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/rm.c')
-rw-r--r-- | builtin/rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rm.c b/builtin/rm.c index db85b33982..90cbe896c9 100644 --- a/builtin/rm.c +++ b/builtin/rm.c @@ -110,7 +110,7 @@ static int check_local_mod(struct object_id *head, int index_only) const struct cache_entry *ce; const char *name = list.entry[i].name; struct object_id oid; - unsigned mode; + unsigned short mode; int local_changes = 0; int staged_changes = 0; |