diff --git a/ChangeLog b/ChangeLog
index e69de29b..1bb1f105 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -0,0 +1,5 @@
+2019-01-05  Joerg Wunsch <j.gnu@uriah.heep.sax.de>
+
+	Submitted by Milan Kupcevic:
+	patch #9735: spelling error fix: psuedo -> pseudo
+	* avrpart.c (avr_display): Spelling fix
diff --git a/NEWS b/NEWS
index 8a56c321..a17af126 100644
--- a/NEWS
+++ b/NEWS
@@ -64,8 +64,8 @@ Current:
     patch #8311: Add IPv6 support to the -Pnet:host:port option
     patch #9542: Correct "usersig" on avr8x devices
     patch #8128: Added new option to configure.ac script
-    patch #8444: Proposal for modifications in -B and -U command options managment
-    (partially)
+    patch #8444: Proposal for modifications in -B and -U command options managment (partially)
+    patch #9735: spelling error fix: psuedo -> pseudo
 
   * Internals:
     - New avrdude.conf keyword "family_id", used to verify SIB attributes
diff --git a/avrpart.c b/avrpart.c
index 621a85b9..acb13d5b 100644
--- a/avrpart.c
+++ b/avrpart.c
@@ -645,7 +645,7 @@ void avr_display(FILE * f, AVRPART * p, const char * prefix, int verbose)
           prefix, avr_pin_name(p->retry_pulse),
           prefix, (p->flags & AVRPART_SERIALOK) ? "yes" : "no",
           prefix, (p->flags & AVRPART_PARALLELOK) ?
-            ((p->flags & AVRPART_PSEUDOPARALLEL) ? "psuedo" : "yes") : "no",
+            ((p->flags & AVRPART_PSEUDOPARALLEL) ? "pseudo" : "yes") : "no",
           prefix, p->timeout,
           prefix, p->stabdelay,
           prefix, p->cmdexedelay,