aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2003-07-16 09:46:44 +0000
committertradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2003-07-16 09:46:44 +0000
commit9ba114325f69ba5cb45d954d54ed7fc40e755777 (patch)
treec9264efa3b4f2686093a8eaa38110b348124e365
parent819d64ba2958b154d845407b56323d2624122488 (diff)
Fixed a compiler warning about unused parameters.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@415 b61c5cb5-eaca-4651-9a7a-d64986f99364
-rw-r--r--src/GHExtension.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index aa7ec1b..397e830 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -83,7 +83,7 @@ void *PUGH_SetupGH (tFleshConfig *config,
/* avoid compiler warnings about unused parameters */
- (void *) (config + 0);
+ (void) (config + 0);
(void) (convergence_level + 0);
/* Set up the GH */