aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorDmitry Morozovsky <marck@FreeBSD.org>2006-08-06 14:23:50 +0000
committerDmitry Morozovsky <marck@FreeBSD.org>2006-08-06 14:23:50 +0000
commitbe0ee8b3159bbe1bc39a453e8fae5a3fdf3ca5cd (patch)
tree1ebb2c483db4575085857950b75ef8a3b65d870a /sbin/dump
parentd1806988975d5b01f2940eb511da075e9850f1e7 (diff)
downloadsrc-be0ee8b3159bbe1bc39a453e8fae5a3fdf3ca5cd.tar.gz
src-be0ee8b3159bbe1bc39a453e8fae5a3fdf3ca5cd.zip
Eliminate a pair of unneeded parentheses slipped in from previous version of
fix. Noticed by: ru
Notes
Notes: svn path=/head/; revision=161025
Diffstat (limited to 'sbin/dump')
-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 4bdc1721362d..8fc255ae73c5 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);