forked from Imagelibrary/rtems
fstests: Use designated initializers
This commit is contained in:
@@ -25,16 +25,16 @@
|
|||||||
|
|
||||||
#define BLOCK_SIZE 512
|
#define BLOCK_SIZE 512
|
||||||
|
|
||||||
msdos_format_request_param_t rqdata = {
|
static const msdos_format_request_param_t rqdata = {
|
||||||
OEMName: "RTEMS",
|
.OEMName = "RTEMS",
|
||||||
VolLabel: "RTEMSDisk",
|
.VolLabel = "RTEMSDisk",
|
||||||
sectors_per_cluster: 2,
|
.sectors_per_cluster = 2,
|
||||||
fat_num: 0,
|
.fat_num = 0,
|
||||||
files_per_root_dir: 0,
|
.files_per_root_dir = 0,
|
||||||
media: 0,
|
.media = 0,
|
||||||
quick_format: FALSE,
|
.quick_format = false,
|
||||||
skip_alignment: 0,
|
.skip_alignment = 0,
|
||||||
info_level: 0
|
.info_level = 0
|
||||||
};
|
};
|
||||||
|
|
||||||
void test_initialize_filesystem(void)
|
void test_initialize_filesystem(void)
|
||||||
|
|||||||
Reference in New Issue
Block a user