summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2014-09-30 09:32:41 -0400
committerPaul Smith <psmith@gnu.org>2014-09-30 09:32:41 -0400
commit6b345aca38ae9cd650ff3b96692d083ed37ab6fd (patch)
tree3fcd50f7211d330b97ac4974b5cb4b7ee2a93018
parente5d314df07625b09cc237efcff5ab14c2365afaa (diff)
downloadmake-6b345aca38ae9cd650ff3b96692d083ed37ab6fd.tar.gz
* tests/scripts/features/load: Avoid unused variable warnings.
-rw-r--r--tests/scripts/features/load2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/scripts/features/load b/tests/scripts/features/load
index 05e9ddb0..1f8cdc22 100644
--- a/tests/scripts/features/load
+++ b/tests/scripts/features/load
@@ -23,6 +23,7 @@ int plugin_is_GPL_compatible;
int
testload_gmk_setup (gmk_floc *pos)
{
+ (void)pos;
gmk_eval ("TESTLOAD = implicit", 0);
return 1;
}
@@ -30,6 +31,7 @@ testload_gmk_setup (gmk_floc *pos)
int
explicit_setup (gmk_floc *pos)
{
+ (void)pos;
gmk_eval ("TESTLOAD = explicit", 0);
return 1;
}