diff --git a/tests/misc/iterable_sections/src/main.c b/tests/misc/iterable_sections/src/main.c index a2dde51bd23..1feed8319b2 100644 --- a/tests/misc/iterable_sections/src/main.c +++ b/tests/misc/iterable_sections/src/main.c @@ -8,15 +8,15 @@ #include struct test_ram { - int i; + long i; }; struct test_ram_named { - int i; + long i; }; struct test_ram_numeric { - int i; + long i; }; #define CHECK_BIT 0x80 @@ -105,15 +105,15 @@ ZTEST(iterable_sections, test_ram) } struct test_rom { - int i; + long i; }; struct test_rom_named { - int i; + long i; }; struct test_rom_numeric { - int i; + long i; }; /* declare in random order to check that the linker is sorting by name */