Skip to content

Commit 71df83b

Browse files
committed
SIZE_T -> size_t
1 parent 6b14fef commit 71df83b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/source/Sctp/Sctp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ STATUS sctpSessionWriteDcep(PSctpSession pSctpSession, UINT32 streamId, PCHAR pC
269269
return retStatus;
270270
}
271271

272-
INT32 onSctpOutboundPacket(PVOID addr, PVOID data, SIZE_T length, UINT8 tos, UINT8 set_df)
272+
INT32 onSctpOutboundPacket(PVOID addr, PVOID data, size_t length, UINT8 tos, UINT8 set_df)
273273
{
274274
UNUSED_PARAM(tos);
275275
UNUSED_PARAM(set_df);

src/source/Sctp/Sctp.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ STATUS sctpSessionWriteMessage(PSctpSession, UINT32, BOOL, PBYTE, UINT32);
7676
STATUS sctpSessionWriteDcep(PSctpSession, UINT32, PCHAR, UINT32, PRtcDataChannelInit);
7777

7878
// Callbacks used by usrsctp
79-
INT32 onSctpOutboundPacket(PVOID, PVOID, SIZE_T, UINT8, UINT8);
79+
INT32 onSctpOutboundPacket(PVOID, PVOID, size_t, UINT8, UINT8);
8080
INT32 onSctpInboundPacket(struct socket*, union sctp_sockstore, PVOID, ULONG, struct sctp_rcvinfo, INT32, PVOID);
8181

8282
#ifdef __cplusplus

0 commit comments

Comments
 (0)