mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-09-20 16:16:20 +03:00
Fix grammar for single byte errors
This commit is contained in:
@@ -1422,8 +1422,8 @@ int avr_verify_mem(const PROGRAMMER *pgm, const AVRPART *p, const AVRPART *v, co
|
||||
}
|
||||
}
|
||||
if(verror)
|
||||
imsg_info(" %d byte%s do not match caused by %d bit error%s of which %d set and %d cleared on device\n",
|
||||
verror, str_plural(verror), biterrs, str_plural(biterrs), bitsset, biterrs-bitsset);
|
||||
imsg_info(" %d byte%s do%s not match caused by %d bit error%s of which %d set and %d cleared on device\n",
|
||||
verror, str_plural(verror), verror > 1? "": "es", biterrs, str_plural(biterrs), bitsset, biterrs-bitsset);
|
||||
if(verror && bitsset == 0 && mem_is_in_flash(a))
|
||||
imsg_info(" maybe flash was not erased beforehand or flash programming sections overlap?\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user