summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2014-04-03 18:05:17 -0700
committerYaowu Xu <yaowu@google.com>2014-04-03 18:05:17 -0700
commitc1548269617fe63ab8b226f3522144368e069744 (patch)
treeb59b6d9bef08f9387a4ae789f8ea085d149d8589
parent24c06356557446ba797d2456af959e48ad0c0031 (diff)
downloadlibvpx-c1548269617fe63ab8b226f3522144368e069744.tar
libvpx-c1548269617fe63ab8b226f3522144368e069744.tar.gz
libvpx-c1548269617fe63ab8b226f3522144368e069744.tar.bz2
libvpx-c1548269617fe63ab8b226f3522144368e069744.zip
Removed space in ETA printout
This is to fix issue#709 Change-Id: I537f1fb74252fef8a58e68b0960a36a9aada856e
-rw-r--r--vpxenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpxenc.c b/vpxenc.c
index 1cd5e9232..19251dc22 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -1498,7 +1498,7 @@ static void print_time(const char *label, int64_t etl) {
etl -= mins * 60;
secs = etl;
- fprintf(stderr, "[%3s %2"PRId64":%02"PRId64": % 02"PRId64"] ",
+ fprintf(stderr, "[%3s %2"PRId64":%02"PRId64":%02"PRId64"] ",
label, hours, mins, secs);
} else {
fprintf(stderr, "[%3s unknown] ", label);