* tests/scripts/features/load: Avoid unused variable warnings.
authorPaul Smith <psmith@gnu.org>
Tue, 30 Sep 2014 13:31:39 +0000 (09:31 -0400)
committerPaul Smith <psmith@gnu.org>
Tue, 30 Sep 2014 13:32:41 +0000 (09:32 -0400)
tests/scripts/features/load

index 05e9ddb090c58f7d47fca0c5420da91e59212e56..1f8cdc22a33b89113f087aa3267e52b0b37bec6f 100644 (file)
@@ -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;
 }