svn commit: r303793 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sat Aug 6 12:51:08 UTC 2016


Author: tuexen
Date: Sat Aug  6 12:51:07 2016
New Revision: 303793
URL: https://svnweb.freebsd.org/changeset/base/303793

Log:
  Mark an unused parameter as such.
  
  MFC after:	3 days

Modified:
  head/sys/netinet/sctp_ss_functions.c

Modified: head/sys/netinet/sctp_ss_functions.c
==============================================================================
--- head/sys/netinet/sctp_ss_functions.c	Sat Aug  6 12:33:15 2016	(r303792)
+++ head/sys/netinet/sctp_ss_functions.c	Sat Aug  6 12:51:07 2016	(r303793)
@@ -221,9 +221,11 @@ default_again:
 }
 
 static void
-sctp_ss_default_scheduled(struct sctp_tcb *stcb, struct sctp_nets *net SCTP_UNUSED,
+sctp_ss_default_scheduled(struct sctp_tcb *stcb,
+    struct sctp_nets *net SCTP_UNUSED,
     struct sctp_association *asoc,
-    struct sctp_stream_out *strq, int moved_how_much)
+    struct sctp_stream_out *strq,
+    int moved_how_much SCTP_UNUSED)
 {
 	struct sctp_stream_queue_pending *sp;
 


More information about the svn-src-all mailing list