Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Dec 2015 22:44:42 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291659 - head/sys/netinet
Message-ID:  <201512022244.tB2MigW2051642@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Wed Dec  2 22:44:42 2015
New Revision: 291659
URL: https://svnweb.freebsd.org/changeset/base/291659

Log:
  Minor cleanup. No functional change.
  
  MFC after:	1 week

Modified:
  head/sys/netinet/sctp_output.c

Modified: head/sys/netinet/sctp_output.c
==============================================================================
--- head/sys/netinet/sctp_output.c	Wed Dec  2 22:35:25 2015	(r291658)
+++ head/sys/netinet/sctp_output.c	Wed Dec  2 22:44:42 2015	(r291659)
@@ -12053,7 +12053,7 @@ sctp_send_str_reset_req(struct sctp_tcb 
 		oldstream = stcb->asoc.strmout;
 		/* get some more */
 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
-		    ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
+		    (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out),
 		    SCTP_M_STRMO);
 		if (stcb->asoc.strmout == NULL) {
 			uint8_t x;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512022244.tB2MigW2051642>