From f2e525775855342d8ddc4b0656981f8ff0fc0acc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sun, 12 Apr 1998 14:20:12 +0200
Subject: [PATCH] Fixed minor bug.

Rev: src/module_support.c:1.11
---
 src/module_support.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/module_support.c b/src/module_support.c
index b0977f94b1..186ab37af9 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:
   {
-- 
GitLab