summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sbin/dump/optr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/dump/optr.c b/sbin/dump/optr.c
index 4bdc172..8fc255a 100644
--- a/sbin/dump/optr.c
+++ b/sbin/dump/optr.c
@@ -209,7 +209,7 @@ timeest(void)
mins = (deltat % 3600) / 60;
tdone_str = ctime(&tdone);
- tdone_str[(strlen(tdone_str) - 1)] = '\0';
+ tdone_str[strlen(tdone_str) - 1] = '\0';
setproctitle(
"%s: pass %d: %3.2f%% done, finished in %d:%02d at %s",
disk, passno, percent, hours, mins, tdone_str);
OpenPOWER on IntegriCloud