summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authormarck <marck@FreeBSD.org>2006-08-06 14:23:50 +0000
committermarck <marck@FreeBSD.org>2006-08-06 14:23:50 +0000
commita86a4a96029e89c0605789f238ffa7f6c897d7eb (patch)
tree1ebb2c483db4575085857950b75ef8a3b65d870a /sbin
parent4d5f059a50da8ba9f7b7d49e93653377fe8296cb (diff)
downloadFreeBSD-src-a86a4a96029e89c0605789f238ffa7f6c897d7eb.zip
FreeBSD-src-a86a4a96029e89c0605789f238ffa7f6c897d7eb.tar.gz
Eliminate a pair of unneeded parentheses slipped in from previous version of
fix. Noticed by: ru
Diffstat (limited to 'sbin')
-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