mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-29 02:20:01 +00:00
* tests/scripts/features/load: Avoid unused variable warnings.
This commit is contained in:
parent
9ed452b041
commit
3712e8a819
1 changed files with 2 additions and 0 deletions
|
@ -23,6 +23,7 @@ int plugin_is_GPL_compatible;
|
||||||
int
|
int
|
||||||
testload_gmk_setup (gmk_floc *pos)
|
testload_gmk_setup (gmk_floc *pos)
|
||||||
{
|
{
|
||||||
|
(void)pos;
|
||||||
gmk_eval ("TESTLOAD = implicit", 0);
|
gmk_eval ("TESTLOAD = implicit", 0);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -30,6 +31,7 @@ testload_gmk_setup (gmk_floc *pos)
|
||||||
int
|
int
|
||||||
explicit_setup (gmk_floc *pos)
|
explicit_setup (gmk_floc *pos)
|
||||||
{
|
{
|
||||||
|
(void)pos;
|
||||||
gmk_eval ("TESTLOAD = explicit", 0);
|
gmk_eval ("TESTLOAD = explicit", 0);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue