Don't inline

Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
This commit is contained in:
Adrien Gallouët
2018-04-05 09:07:19 +00:00
parent 1e9bb89764
commit e0d7494a71

2
mud.c
View File

@@ -1165,7 +1165,7 @@ mud_packet_check(struct mud *mud, unsigned char *data, size_t size)
return mud_decrypt_opt(&mud->crypto.private, &opt); return mud_decrypt_opt(&mud->crypto.private, &opt);
} }
static inline uint64_t static uint64_t
mud_compute_rtt(const uint64_t rtt, const uint64_t new_rtt) mud_compute_rtt(const uint64_t rtt, const uint64_t new_rtt)
{ {
return rtt ? (new_rtt + UINT64_C(7) * rtt) >> 3 : new_rtt; return rtt ? (new_rtt + UINT64_C(7) * rtt) >> 3 : new_rtt;