Replace incorrect warning message

Was mistakenly added in PR #854.
This commit is contained in:
MCUdude 2022-01-29 19:56:26 +01:00
parent 28be45d8b6
commit 7144a9f2ae
1 changed files with 2 additions and 2 deletions

View File

@ -623,8 +623,8 @@ static int stk500_parseextparms(PROGRAMMER * pgm, LISTID extparms)
if (sscanf(extended_param, "attempts=%2d", &attempts) == 1) {
PDATA(pgm)->retry_attempts = attempts;
avrdude_message(MSG_INFO, "%s: serialupdi_parseextparms(): invalid extended parameter '%s'\n",
progname, extended_param);
avrdude_message(MSG_INFO, "%s: Setting number of retry attempts to %d\n",
progname, attempts);
continue;
}