1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00

Merge pull request #18529 from MrKevinWeiss/pr/fix/pkg_tinyvcdiff

tests/pkg_tinyvcdiff: Initialize mtd->write_size
This commit is contained in:
benpicco 2022-08-30 15:08:10 +02:00 committed by GitHub
commit 034e39523e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,8 @@ typedef struct {
#define FAKE_MTD_INIT { .mtd = { .driver = &fake_mtd_driver, \
.sector_count = FAKE_MTD_SECTOR_COUNT, \
.pages_per_sector = FAKE_MTD_PAGES_PER_SECTOR, \
.page_size = FAKE_MTD_PAGE_SIZE } }
.page_size = FAKE_MTD_PAGE_SIZE, \
.write_size = 1 } }
#ifdef __cplusplus
}