mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
sctp: Avoid old-style function defintions
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4457>
This commit is contained in:
parent
689dbd1fbe
commit
63ccf85049
2 changed files with 2 additions and 2 deletions
|
@ -7982,7 +7982,7 @@ sctp_drain_mbufs(struct sctp_tcb *stcb)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
sctp_drain()
|
sctp_drain(void)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* We must walk the PCB lists for ALL associations here. The system
|
* We must walk the PCB lists for ALL associations here. The system
|
||||||
|
|
|
@ -61,7 +61,7 @@ FEATURE(sctp, "Stream Control Transmission Protocol");
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
void
|
||||||
sctp_init_sysctls()
|
sctp_init_sysctls(void)
|
||||||
{
|
{
|
||||||
SCTP_BASE_SYSCTL(sctp_sendspace) = SCTPCTL_MAXDGRAM_DEFAULT;
|
SCTP_BASE_SYSCTL(sctp_sendspace) = SCTPCTL_MAXDGRAM_DEFAULT;
|
||||||
SCTP_BASE_SYSCTL(sctp_recvspace) = SCTPCTL_RECVSPACE_DEFAULT;
|
SCTP_BASE_SYSCTL(sctp_recvspace) = SCTPCTL_RECVSPACE_DEFAULT;
|
||||||
|
|
Loading…
Reference in a new issue