svn commit: r252925 - stable/9/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jul 7 11:26:16 UTC 2013


Author: tuexen
Date: Sun Jul  7 11:26:15 2013
New Revision: 252925
URL: http://svnweb.freebsd.org/changeset/base/252925

Log:
  MFC r240114:
  Whitespace change.

Modified:
  stable/9/sys/netinet/sctputil.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/sctputil.c
==============================================================================
--- stable/9/sys/netinet/sctputil.c	Sun Jul  7 11:20:12 2013	(r252924)
+++ stable/9/sys/netinet/sctputil.c	Sun Jul  7 11:26:15 2013	(r252925)
@@ -2385,7 +2385,7 @@ sctp_calculate_rto(struct sctp_tcb *stcb
 	timevalsub(&now, old);
 	/* store the current RTT in us */
 	net->rtt = (uint64_t) 1000000 *(uint64_t) now.tv_sec +
-	         (uint64_t) now.tv_usec;
+	        (uint64_t) now.tv_usec;
 
 	/* computer rtt in ms */
 	rtt = net->rtt / 1000;


More information about the svn-src-all mailing list