projects
/
platform
/
upstream
/
make.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ed452b
)
* tests/scripts/features/load: Avoid unused variable warnings.
author
Paul Smith
<psmith@gnu.org>
Tue, 30 Sep 2014 13:31:39 +0000
(09:31 -0400)
committer
Paul Smith
<psmith@gnu.org>
Tue, 30 Sep 2014 13:32:41 +0000
(09:32 -0400)
tests/scripts/features/load
patch
|
blob
|
history
diff --git
a/tests/scripts/features/load
b/tests/scripts/features/load
index 05e9ddb090c58f7d47fca0c5420da91e59212e56..1f8cdc22a33b89113f087aa3267e52b0b37bec6f 100644
(file)
--- 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;
}