Silence fall through warning in update.c

This commit is contained in:
Stefan Rueger 2023-01-11 17:34:18 +00:00
parent 6b95f9d181
commit 319ee2db9c
No known key found for this signature in database
GPG Key ID: B0B4F1FD86B1EC55
1 changed files with 2 additions and 1 deletions

View File

@ -560,8 +560,9 @@ int do_op(const PROGRAMMER *pgm, const AVRPART *p, UPDATE *upd, enum updateflags
pmsg_info("%d byte%s of %s%s written\n", fs.nbytes,
update_plural(fs.nbytes), mem->desc, alias_mem_desc);
if (!(flags & UF_VERIFY)) // Fall through for auto verify unless -V was specified
if (!(flags & UF_VERIFY)) // Fall through for auto verify unless
break;
// Fall through
case DEVICE_VERIFY:
// Verify that the in memory file is the same as what is on the chip