diff options
| author | Dmitry Morozovsky <marck@FreeBSD.org> | 2006-08-06 14:23:50 +0000 |
|---|---|---|
| committer | Dmitry Morozovsky <marck@FreeBSD.org> | 2006-08-06 14:23:50 +0000 |
| commit | be0ee8b3159bbe1bc39a453e8fae5a3fdf3ca5cd (patch) | |
| tree | 1ebb2c483db4575085857950b75ef8a3b65d870a /sbin/dump | |
| parent | d1806988975d5b01f2940eb511da075e9850f1e7 (diff) | |
Notes
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 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); |
