mtd: add missing <endian.h> include
authorFelix Fietkau <nbd@openwrt.org>
Fri, 5 Jun 2015 09:00:02 +0000 (09:00 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 5 Jun 2015 09:00:02 +0000 (09:00 +0000)
trx.c in mtd would not include endian.h, so on systems that do not have
this header implicitly included from the other headers (like musl), both
__BYTE_ORDER and __BIG_ENDIAN would be undefined and thus 0, leading to
it always presuming a big-endian system. this would lead to issues when
running mtd fixtrx on little-endian systems, as it would never recognize
the TRX magic as result of the broken STORE32_LE() macro.

Signed-off-by: Shiz <hi@shiz.me>
Tested-by: Shiz <hi@shiz.me>
SVN-Revision: 45896

package/system/mtd/src/trx.c

index 089d1ace46398376591b0dfebbefd196598acffd..245ee7630ae26aee54e286fd719cda6ecb53b6b0 100644 (file)
@@ -26,6 +26,7 @@
 #include <fcntl.h>
 #include <sys/mman.h>
 #include <sys/stat.h>
+#include <endian.h>
 #include <string.h>
 #include <errno.h>