Merge pull request #49 from nodemcu/dev094

fix file api issue when compile using gcc toolchain
This commit is contained in:
zeroday 2014-12-26 00:07:30 +08:00
commit fe07b12e4b
1 changed files with 2 additions and 0 deletions

View File

@ -400,6 +400,8 @@ typedef struct __attribute(( packed )) {
u32_t size;
// type of object
spiffs_obj_type type;
// alignment2
u8_t _align2[4 - (sizeof(spiffs_obj_type)&3)==0 ? 4 : (sizeof(spiffs_obj_type)&3)];
// name of object
u8_t name[SPIFFS_OBJ_NAME_LEN];
} spiffs_page_object_ix_header;