]> sjero.net Git - wget/blobdiff - src/progress.c
[svn] Fix a minor ETA padding glitch.
[wget] / src / progress.c
index c4dd737e6d269df90baaef1ed951aee777663917..3ae5b38d3510e9996f4f7704004d7e88bf1af672 100644 (file)
@@ -647,7 +647,7 @@ create_image (struct bar_progress *bp, long dltime)
        /* Hours not printed: pad with three spaces (two digits and
           colon). */
        APPEND_LITERAL ("   ");
-      else if (eta_hrs >= 10)
+      else if (eta_hrs < 10)
        /* Hours printed with one digit: pad with one space. */
        *p++ = ' ';
       else