From 0dcedd04afe5fa71a2d9ceb66b2c71c7ff0c9fd9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Tue, 9 Dec 2003 13:51:41 +0100
Subject: [PATCH] Fixed typo.

Rev: src/module_support.c:1.57
---
 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 18a6327967..67cd5c0b9c 100644
--- a/src/module_support.c
+++ b/src/module_support.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: module_support.c,v 1.56 2003/12/08 14:11:18 grubba Exp $
+|| $Id: module_support.c,v 1.57 2003/12/09 12:51:41 grubba Exp $
 */
 
 #include "global.h"
@@ -18,7 +18,7 @@
 
 #define sp Pike_sp
 
-RCSID("$Id: module_support.c,v 1.56 2003/12/08 14:11:18 grubba Exp $");
+RCSID("$Id: module_support.c,v 1.57 2003/12/09 12:51:41 grubba Exp $");
 
 /* Checks that args_to_check arguments are OK.
  * Returns 1 if everything worked ok, zero otherwise.
@@ -230,7 +230,7 @@ int va_get_args(struct svalue *s,
 	*va_arg(ap, LONGEST *)=s->u.integer;
 	break;
       } else if (!is_bignum_object_in_svalue(s) ||
-		 !int64_from_bignum(*va_arg(ap, LONGEST *), s->u.object)) {
+		 !int64_from_bignum(va_arg(ap, LONGEST *), s->u.object)) {
 	return ret;
       }
       break;
-- 
GitLab