aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Yaroshevich <yura.yaroshevich@gmail.com>2020-05-25 15:54:34 +0300
committerGitHub <noreply@github.com>2020-05-25 14:54:34 +0200
commit4069ba5b9587bd7c99d964756b527d6259f0d3da (patch)
treee14667bd1b3a68abdc10ae03bc58a19283234337
parent85c8e5066caf77f91393f05128bb9971c9998abd (diff)
downloadusrsctp-4069ba5b9587bd7c99d964756b527d6259f0d3da.tar.gz
Fixed compilation due usage of non existing macro (#474)
-rwxr-xr-xusrsctplib/user_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrsctplib/user_socket.c b/usrsctplib/user_socket.c
index 811e061..657c82a 100755
--- a/usrsctplib/user_socket.c
+++ b/usrsctplib/user_socket.c
@@ -3545,7 +3545,7 @@ usrsctp_conninput(void *addr, const void *buffer, size_t length, uint8_t ecn_bit
void usrsctp_handle_timers(uint32_t elapsed_milliseconds)
{
- sctp_handle_tick(MSEC_TO_TICKS(elapsed_milliseconds));
+ sctp_handle_tick(sctp_msecs_to_ticks(elapsed_milliseconds));
}
int