aboutsummaryrefslogtreecommitdiff
path: root/src/ReductionMin.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/ReductionMin.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/ReductionMin.c')
-rw-r--r--src/ReductionMin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ReductionMin.c b/src/ReductionMin.c
index 061523e..dfc22a9 100644
--- a/src/ReductionMin.c
+++ b/src/ReductionMin.c
@@ -219,8 +219,9 @@ static int PUGH_ReductionMinVal (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 */