svn commit: r291659 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Wed Dec 2 22:44:43 UTC 2015


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;


More information about the svn-src-head mailing list