diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:10:13 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:10:13 +0000 |
commit | 4f43c42282604d0c57c64d1844c7d4e0fe819928 (patch) | |
tree | 4c4bc5ee11c1ba9cc00ff67aad0a9568bd4a89f7 /usr.sbin | |
parent | 8e24dfb1274ca9a46c89b33ae64ba22a5f5610ce (diff) |
double semicolon; from Daniel Matic in PR 4929
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/afs/src/rx/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/afs/src/rx/rx.c b/usr.sbin/afs/src/rx/rx.c index 01ce8fd0df9..b3858879356 100644 --- a/usr.sbin/afs/src/rx/rx.c +++ b/usr.sbin/afs/src/rx/rx.c @@ -2195,7 +2195,7 @@ update_timeout(struct rx_peer *peer) if (rtt_timeout < 1000) /* 1000 = 1ms */ rtt_timeout = 1000; /* Minimum timeout */ peer->timeout.usec = rtt_timeout % 1000000; - peer->timeout.sec = rtt_timeout / 1000000;; + peer->timeout.sec = rtt_timeout / 1000000; } /* On a dubious timeout double MDEV but within reason. |