changeset 25234:17336b4fc693

(BCOPY_SHORT): Fix typo `unsigined'.
author Karl Heuer <kwzh@gnu.org>
date Tue, 10 Aug 1999 17:30:22 +0000
parents f0d69d0f8222
children 98c67187cd6b
files src/charset.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/charset.h	Tue Aug 10 17:28:10 1999 +0000
+++ b/src/charset.h	Tue Aug 10 17:30:22 1999 +0000
@@ -835,7 +835,7 @@
 #define BCOPY_SHORT(from, to, len)		\
   do {						\
     int i = len;				\
-    unsigined char *from_p = from, *to_p = to;	\
+    unsigned char *from_p = from, *to_p = to;	\
     while (i--) *from_p++ = *to_p++;		\
   } while (0)