diff options
author | Elijah Newren <newren@gmail.com> | 2018-09-05 10:25:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-12 15:17:17 -0700 |
commit | e4c34855a26fccd2072d452390a0e3167bcc4da9 (patch) | |
tree | 5cbcfde077fd742b0ed96f80c6e7bb8a0fb77853 /builtin/update-ref.c | |
parent | Git 2.19 (diff) | |
download | tgif-e4c34855a26fccd2072d452390a0e3167bcc4da9.tar.xz |
update-ref: fix type of update_flags variable to match its usage
The ref_transaction_*() family of functions expect a flags parameter
which is of type unsigned int. Make the update_flags variable, which
is passed as that parameter, be of the same type.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/update-ref.c')
-rw-r--r-- | builtin/update-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-ref.c b/builtin/update-ref.c index 4fa3c0a86f..54fac01f21 100644 --- a/builtin/update-ref.c +++ b/builtin/update-ref.c @@ -14,7 +14,7 @@ static const char * const git_update_ref_usage[] = { }; static char line_termination = '\n'; -static int update_flags; +static unsigned int update_flags; static unsigned create_reflog_flag; static const char *msg; |