Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion include/ff_ioman.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
#ifndef _FF_IOMAN_H_
#define _FF_IOMAN_H_

#if defined( __GNUC__ )
#define FF_PACKED __attribute__( ( packed ) )
#else
#define FF_PACKED
#endif

#ifdef __cplusplus
extern "C" {
#endif
Expand Down Expand Up @@ -379,7 +385,7 @@
ucActive : 8, /* FF_FAT_PTBL_ACTIVE */
ucPartitionID : 8, /* FF_FAT_PTBL_ID */
bIsExtended : 1;
} FF_Part_t;
} FF_Part_t FF_PACKED;

typedef struct _SPartFound
{
Expand Down
Loading