Silence some variable set but not used warnings.
authorNelson Ferreira <nelson.ferreira@ieee.org>
Sun, 7 Jun 2015 13:05:38 +0000 (09:05 -0400)
committerNelson Ferreira <nelson.ferreira@ieee.org>
Sun, 7 Jun 2015 13:48:32 +0000 (09:48 -0400)
* lib-src/etags.c(just_read_file): provide 'dummy' usage.

* lib-src/ootags.c(just_read_file): provide 'dummy' usage.

Signed-off-by: Nelson Ferreira <nelson.ferreira@ieee.org>
lib-src/etags.c
lib-src/ootags.c

index b370954..e7f3c20 100644 (file)
@@ -4369,6 +4369,7 @@ FILE *inf;
 
        LOOP_ON_INPUT_LINES (inf, lb, dummy)
                continue;
+       (void)dummy; // Silence set-not-read warning.
 }
 
 \f
index a167988..bb6fcf9 100644 (file)
@@ -3537,6 +3537,7 @@ FILE *inf;
 
        LOOP_ON_INPUT_LINES(inf, lb, dummy)
            continue;
+       (void)dummy; // Silence set-not-read warning.
 }
 \f
 /* Fortran parsing */