1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

pkg/lwip: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:18:08 +02:00
parent 0ba8628b45
commit 04183aa8fd

View File

@ -39,9 +39,9 @@ extern "C" {
#ifndef BYTE_ORDER
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
# define BYTE_ORDER (LITTLE_ENDIAN) /**< platform's endianess */
# define BYTE_ORDER (LITTLE_ENDIAN) /**< platform's endianness */
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
# define BYTE_ORDER (BIG_ENDIAN) /**< platform's endianess */
# define BYTE_ORDER (BIG_ENDIAN) /**< platform's endianness */
#else
# error "Byte order is neither little nor big!"
#endif