aboutsummaryrefslogtreecommitdiff
path: root/src/ReductionMax.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/ReductionMax.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/ReductionMax.c')
-rw-r--r--src/ReductionMax.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ReductionMax.c b/src/ReductionMax.c
index 390b4fc..6ba57c7 100644
--- a/src/ReductionMax.c
+++ b/src/ReductionMax.c
@@ -218,8 +218,9 @@ static int PUGH_ReductionMaxVal (cGH *GH,
#endif
- /* prevent compiler warnings about the num_points parameter
- which is unused in this reduction operator */
+ /* prevent compiler warnings about unused parameters */
+ GH = GH;
+ proc = proc;
num_points = num_points;
/* macros to complete the ITERATE_ARRAY macro */