Commit d9812431 authored by Yaowu Xu's avatar Yaowu Xu Committed by Gerrit Code Review
Browse files

Merge "Removed space in ETA printout"

Showing with 1 addition and 1 deletion
...@@ -1503,7 +1503,7 @@ static void print_time(const char *label, int64_t etl) { ...@@ -1503,7 +1503,7 @@ static void print_time(const char *label, int64_t etl) {
etl -= mins * 60; etl -= mins * 60;
secs = etl; secs = etl;
fprintf(stderr, "[%3s %2"PRId64":%02"PRId64": % 02"PRId64"] ", fprintf(stderr, "[%3s %2"PRId64":%02"PRId64":%02"PRId64"] ",
label, hours, mins, secs); label, hours, mins, secs);
} else { } else {
fprintf(stderr, "[%3s unknown] ", label); fprintf(stderr, "[%3s unknown] ", label);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment