VFS/FS: putnode count need not be 64-bit

Change-Id: I49e67438d3f316e0321ac711494e988bb6510679
This commit is contained in:
David van Moolenbroek 2014-09-29 15:14:02 +00:00
parent 63ce03db66
commit 347cc10a91

View file

@ -1825,10 +1825,10 @@ typedef struct {
_ASSERT_MSG_SIZE(mess_vfs_fs_newnode);
typedef struct {
uint64_t count;
ino_t inode;
unsigned int count;
uint8_t data[40];
uint8_t data[44];
} mess_vfs_fs_putnode;
_ASSERT_MSG_SIZE(mess_vfs_fs_putnode);