From: Paul Smith Date: Tue, 30 Sep 2014 13:31:39 +0000 (-0400) Subject: * tests/scripts/features/load: Avoid unused variable warnings. X-Git-Tag: 4.1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3712e8a81913932d5daead046fa483de291ec502;p=thirdparty%2Fmake.git * tests/scripts/features/load: Avoid unused variable warnings. --- 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; }