update-ref: fix type of update_flags variable to match its usage
commite4c34855a26fccd2072d452390a0e3167bcc4da9
authorElijah Newren <newren@gmail.com>
Wed, 5 Sep 2018 17:25:49 +0000 (5 10:25 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 12 Sep 2018 22:17:17 +0000 (12 15:17 -0700)
tree5cbcfde077fd742b0ed96f80c6e7bb8a0fb77853
parent1d4361b0f344188ab5eec6dcea01f61a3a3a1670
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>
builtin/update-ref.c