Fix alignment

This commit is contained in:
Ilmir Usmanov
2014-10-13 21:42:25 +04:00
parent 38b47eaba7
commit 85ad5f8350
8 changed files with 16 additions and 17 deletions
+3 -2
View File
@@ -22,10 +22,11 @@
typedef struct tree_header
{
uint8_t magic;
uint8_t children_num;
struct tree_header *parent;
linked_list children;
uint8_t magic;
uint8_t children_num;
uint16_t reserved;
}
__packed
tree_header;