Commit 2321ee97 authored by funshine's avatar funshine
Browse files

fix file api issue when compile using gcc toolchain

parent 150165a7
...@@ -400,6 +400,8 @@ typedef struct __attribute(( packed )) { ...@@ -400,6 +400,8 @@ typedef struct __attribute(( packed )) {
u32_t size; u32_t size;
// type of object // type of object
spiffs_obj_type type; spiffs_obj_type type;
// alignment2
u8_t _align2[4 - (sizeof(spiffs_obj_type)&3)==0 ? 4 : (sizeof(spiffs_obj_type)&3)];
// name of object // name of object
u8_t name[SPIFFS_OBJ_NAME_LEN]; u8_t name[SPIFFS_OBJ_NAME_LEN];
} spiffs_page_object_ix_header; } spiffs_page_object_ix_header;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment