aboutsummaryrefslogtreecommitdiff
path: root/src/ReductionNormInf.c
diff options
context:
space:
mode:
authortradke <tradke@d60812e6-3970-4df4-986e-c251b06effeb>2001-11-05 15:04:13 +0000
committertradke <tradke@d60812e6-3970-4df4-986e-c251b06effeb>2001-11-05 15:04:13 +0000
commitb2c0086564951243a58574cd17829d7b955e3420 (patch)
tree4a3245266f125ad768c7da67a2eee4abfdae20fc /src/ReductionNormInf.c
parent4c96856378ecdc3c902924b595be00dbf256dccb (diff)
Fixed compiler warnings on unused function arguments.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHReduce/trunk@19 d60812e6-3970-4df4-986e-c251b06effeb
Diffstat (limited to 'src/ReductionNormInf.c')
-rw-r--r--src/ReductionNormInf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ReductionNormInf.c b/src/ReductionNormInf.c
index 9be8883..4e0569a 100644
--- a/src/ReductionNormInf.c
+++ b/src/ReductionNormInf.c
@@ -234,7 +234,8 @@ static int PUGH_ReductionNormInf (cGH *GH,
#define MAX(x,y) ((x) >= (y) ? (x) : (y))
- /* avoid compiler warning about unused parameter */
+ /* avoid compiler warnings about unused parameters */
+ proc = proc;
num_points = num_points;
for (i = total_outvals = 0; i < num_inarrays; i++)