HomeFreeBSD

Adjust sctp_drain() definition to avoid clang 15 warning

Description

Adjust sctp_drain() definition to avoid clang 15 warning

With clang 15, the following -Werror warning is produced:

sys/netinet/sctp_pcb.c:6946:11: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
sctp_drain()
          ^
           void

This is because sctp_drain() is declared with a (void) argument list,
but defined with an empty argument list. Make the definition match the
declaration.

MFC after: 3 days

(cherry picked from commit 24e13a49faabb22ece97dc8e4718caf8f6bad84c)

Details

Provenance
dimAuthored on Jul 26 2022, 11:19 AM
Parents
rG59453e47c8be: Adjust function definitions in geom_event.c to avoid clang 15 warnings
Branches
Unknown
Tags
Unknown