diff --git a/src/module_support.c b/src/module_support.c
index b0977f94b14825e5e65fdc5f1daa1a35930612b0..186ab37af9e13adcf67404d2fbe96bb2f6850d5b 100644
--- a/src/module_support.c
+++ b/src/module_support.c
@@ -6,7 +6,7 @@
 #include "pike_types.h"
 #include "error.h"
 
-RCSID("$Id: module_support.c,v 1.10 1998/04/10 23:29:59 grubba Exp $");
+RCSID("$Id: module_support.c,v 1.11 1998/04/12 12:20:12 grubba Exp $");
 
 /* Checks that args_to_check arguments are OK.
  * Returns 1 if everything worked ok, zero otherwise.
@@ -85,9 +85,9 @@ void check_all_args(const char *fnname, int args, ... )
   {
   case ERR_NONE: return;
   case ERR_TOO_FEW:
-    new_error(fnname, "Too few arguments to %s()\n", sp, args, NULL, 0);
+    new_error(fnname, "Too few arguments.\n", sp, args, NULL, 0);
   case ERR_TOO_MANY:
-    new_error(fnname, "Too many arguments to %s()\n", sp, args, NULL, 0);
+    new_error(fnname, "Too many arguments.\n", sp, args, NULL, 0);
 
   case ERR_BAD_ARG:
   {