kernel: silence a false positive uninitialized variable warning

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2016-07-31 20:43:03 +02:00
parent 532eb5f581
commit ea6a3be62e

View file

@ -34,7 +34,7 @@ static int mtdsplit_parse_brnimage(struct mtd_info *master,
uint32_t buf;
unsigned long rootfs_offset, rootfs_size, kernel_size;
size_t len;
int ret;
int ret = 0;
for (rootfs_offset = 0; rootfs_offset < master->size;
rootfs_offset += BRNIMAGE_ALIGN_BYTES) {