tools/kernel2minor: fix portability issue

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2017-01-05 17:21:51 +01:00
parent 7304510392
commit 8782672b90
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
--- a/yaffs2/yaffs_guts.h
+++ b/yaffs2/yaffs_guts.h
@@ -17,8 +17,9 @@
#define __YAFFS_GUTS_H__
#include "yportenv.h"
+#include <stdint.h>
-typedef __loff_t loff_t;
+typedef int64_t loff_t;
#define YAFFS_OK 1
#define YAFFS_FAIL 0