Skip to content

Commit

Permalink
net: Missed space
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 6, 2020
1 parent 89e3a13 commit a483f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/net.h
Expand Up @@ -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));
}
Expand Down

0 comments on commit a483f87

Please sign in to comment.