Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-10-23 08:43:09 +0300
committerJunio C Hamano <gitster@pobox.com>2019-10-23 08:43:09 +0300
commite3cf08361ae5a277d4cdfbd923f63e8c18634032 (patch)
tree616e3f43da913ed92155fd16ee6b47f02b7b51f3
parentb895e8dea66f7913bac3986beffbca64b47cbf1b (diff)
parent2b6f6ea1bd47f83889c306886e2540faf67efad5 (diff)
Merge branch 'sg/progress-fix'
Byte-order fix the recent update to progress display code. * sg/progress-fix: test-progress: fix test failures on big-endian systems
-rw-r--r--t/helper/test-progress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-progress.c b/t/helper/test-progress.c
index 4e9f7fafdf..42b96cb103 100644
--- a/t/helper/test-progress.c
+++ b/t/helper/test-progress.c
@@ -29,7 +29,7 @@ void progress_test_force_update(void);
int cmd__progress(int argc, const char **argv)
{
- uint64_t total = 0;
+ int total = 0;
const char *title;
struct strbuf line = STRBUF_INIT;
struct progress *progress;