From 7144a9f2ae11a07e7e5817b843dbbbd2d6c236ef Mon Sep 17 00:00:00 2001
From: MCUdude <hansibull@gmail.com>
Date: Sat, 29 Jan 2022 19:56:26 +0100
Subject: [PATCH] Replace incorrect warning message Was mistakenly added in PR
 #854.

---
 src/stk500.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/stk500.c b/src/stk500.c
index 0aef1947..cb270036 100644
--- a/src/stk500.c
+++ b/src/stk500.c
@@ -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;
      }