Module Name:    src
Committed By:   sjg
Date:           Tue Feb 13 19:37:31 UTC 2018

Modified Files:
        src/usr.bin/make: meta.c

Log Message:
Avoid unused variable warning


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/usr.bin/make/meta.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/meta.c
diff -u src/usr.bin/make/meta.c:1.69 src/usr.bin/make/meta.c:1.70
--- src/usr.bin/make/meta.c:1.69	Thu Aug 10 21:07:48 2017
+++ src/usr.bin/make/meta.c	Tue Feb 13 19:37:30 2018
@@ -1,4 +1,4 @@
-/*      $NetBSD: meta.c,v 1.69 2017/08/10 21:07:48 sjg Exp $ */
+/*      $NetBSD: meta.c,v 1.70 2018/02/13 19:37:30 sjg Exp $ */
 
 /*
  * Implement 'meta' mode.
@@ -786,7 +786,9 @@ meta_cmd_finish(void *pbmp)
 {
     int error = 0;
     BuildMon *pbm = pbmp;
+#ifdef USE_FILEMON
     int x;
+#endif
 
     if (!pbm)
 	pbm = &Mybm;

Reply via email to