]> git.ipfire.org Git - thirdparty/git.git/commit - strbuf.c
strbuf_humanise: use unsigned variables
authorJeff King <peff@peff.net>
Tue, 24 Jul 2018 10:52:29 +0000 (06:52 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 Jul 2018 17:19:29 +0000 (10:19 -0700)
commit7726d360b5ba859ae2b6ceefc5d88cc518c78063
tree86180df101254604e2ed305b3a3a541e4ac9523d
parent765b496dc6963ad8aaf40e9ac5dee358aa7fea47
strbuf_humanise: use unsigned variables

All of the numeric formatting done by this function uses
"%u", but we pass in a signed "int". The actual range
doesn't matter here, since the conditional makes sure we're
always showing reasonably small numbers. And even gcc's
format-checker does not seem to mind. But it's potentially
confusing to a reader of the code to see the mismatch.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
strbuf.c