From a483f87db8ab8ae223b03614261bac1db31caf78 Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Fri, 6 Mar 2020 15:19:37 -0600 Subject: [PATCH] net: Missed space --- src/lib/util/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/net.h b/src/lib/util/net.h index fa835d76f34a..aed04fb28bf8 100644 --- a/src/lib/util/net.h +++ b/src/lib/util/net.h @@ -261,7 +261,7 @@ static inline uint16_t fr_ntohs(uint8_t const data[static sizeof(uint16_t)]) * @param[in] data To convert to a 32bit unsigned integer of native endianness. * @return a 32 bit unsigned integer of native endianness. */ -static inline uint32_tfr_ntohl(uint8_t const data[static sizeof(uint32_t)]) +static inline uint32_t fr_ntohl(uint8_t const data[static sizeof(uint32_t)]) { return ((uint32_t)fr_ntohs(data) << 16) | fr_ntohs(data + sizeof(uint16_t)); }