diff options
author | marck <marck@FreeBSD.org> | 2006-08-06 14:23:50 +0000 |
---|---|---|
committer | marck <marck@FreeBSD.org> | 2006-08-06 14:23:50 +0000 |
commit | a86a4a96029e89c0605789f238ffa7f6c897d7eb (patch) | |
tree | 1ebb2c483db4575085857950b75ef8a3b65d870a /sbin/dump | |
parent | 4d5f059a50da8ba9f7b7d49e93653377fe8296cb (diff) | |
download | FreeBSD-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/dump')
-rw-r--r-- | sbin/dump/optr.c | 2 |
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); |