summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/scp.c b/scp.c
index 0da4f9773..268643b51 100644
--- a/scp.c
+++ b/scp.c
@@ -1176,7 +1176,8 @@ progressmeter(int flag)
1176 abbrevsize >>= 10; 1176 abbrevsize >>= 10;
1177 } 1177 }
1178 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5lu %c%c ", 1178 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5lu %c%c ",
1179 (unsigned long) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' : 'B'); 1179 (unsigned long) abbrevsize, prefixes[i],
1180 prefixes[i] == ' ' ? ' ' : 'B');
1180 1181
1181 timersub(&now, &lastupdate, &wait); 1182 timersub(&now, &lastupdate, &wait);
1182 if (cursize > lastsize) { 1183 if (cursize > lastsize) {