diff --git a/src/modules/sprintf/sprintf.c b/src/modules/sprintf/sprintf.c
index 4732c71d4f89afb5c9d2e4ca8b3e6740202aade8..308859d2f5121b5d771b7d345714ae040e1ffa3c 100644
--- a/src/modules/sprintf/sprintf.c
+++ b/src/modules/sprintf/sprintf.c
@@ -96,7 +96,7 @@
 */
 
 #include "global.h"
-RCSID("$Id: sprintf.c,v 1.20 1998/05/24 22:40:53 marcus Exp $");
+RCSID("$Id: sprintf.c,v 1.21 1998/05/25 20:47:17 marcus Exp $");
 #include "error.h"
 #include "array.h"
 #include "svalue.h"
@@ -924,7 +924,7 @@ static string low_pike_sprintf(char *format,
         l=4;
         if(fsp->width > 0) l=fsp->width;
 	if(l != 4 && l != 8)
-	  sprintf_error("Invalid IEEE witdh %d.\n", l);
+	  sprintf_error("Invalid IEEE width %d.\n", l);
 	fsp->b=(char *)alloca(l);
 	fsp->len=l;
 	GET_FLOAT(tf);