diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-10-23 14:43:09 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-23 14:43:09 +0900 |
commit | e3cf08361ae5a277d4cdfbd923f63e8c18634032 (patch) | |
tree | 616e3f43da913ed92155fd16ee6b47f02b7b51f3 /t | |
parent | Merge branch 'nr/diff-highlight-indent-fix' (diff) | |
parent | test-progress: fix test failures on big-endian systems (diff) | |
download | tgif-e3cf08361ae5a277d4cdfbd923f63e8c18634032.tar.xz |
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
Diffstat (limited to 't')
-rw-r--r-- | t/helper/test-progress.c | 2 |
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; |