diff --git a/src/builtin_functions.c b/src/builtin_functions.c
index b851016f18c0813df5bf4e14b35682297b0a27d0..d9da84e577498094617d5142483aa94b11abaace 100644
--- a/src/builtin_functions.c
+++ b/src/builtin_functions.c
@@ -4,7 +4,7 @@
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
 #include "global.h"
-RCSID("$Id: builtin_functions.c,v 1.116 1998/07/17 06:19:50 neotron Exp $");
+RCSID("$Id: builtin_functions.c,v 1.117 1998/07/19 22:49:08 grubba Exp $");
 #include "interpret.h"
 #include "svalue.h"
 #include "pike_macros.h"
@@ -1058,14 +1058,14 @@ static struct pike_string * replace_many(struct pike_string *str,
   for(e=0;e<from->size;e++)
   {
     if(ITEM(from)[e].type != T_STRING)
-      error("Replace: from array not string *\n");
+      error("Replace: from array is not array(string)\n");
     v[e].ind=ITEM(from)[e].u.string;
   }
 
   for(e=0;e<to->size;e++)
   {
     if(ITEM(to)[e].type != T_STRING)
-      error("Replace: to array not string *\n");
+      error("Replace: to array is not array(string)\n");
     v[e].val=ITEM(to)[e].u.string;
   }