Module Name:    src
Committed By:   rillig
Date:           Mon Dec 13 01:51:12 UTC 2021

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

Log Message:
make: fix indentation in meta.c


To generate a diff of this commit:
cvs rdiff -u -r1.185 -r1.186 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.185 src/usr.bin/make/meta.c:1.186
--- src/usr.bin/make/meta.c:1.185	Sat Nov 27 22:04:02 2021
+++ src/usr.bin/make/meta.c	Mon Dec 13 01:51:12 2021
@@ -1,4 +1,4 @@
-/*      $NetBSD: meta.c,v 1.185 2021/11/27 22:04:02 rillig Exp $ */
+/*      $NetBSD: meta.c,v 1.186 2021/12/13 01:51:12 rillig Exp $ */
 
 /*
  * Implement 'meta' mode.
@@ -379,7 +379,7 @@ printCMD(const char *ucmd, FILE *fp, GNo
     FStr xcmd = FStr_InitRefer(ucmd);
 
     if (strchr(ucmd, '$') != NULL) {
-    	char *expanded;
+	char *expanded;
 	(void)Var_Subst(ucmd, gn, VARE_WANTRES, &expanded);
 	/* TODO: handle errors */
 	xcmd = FStr_InitOwn(expanded);

Reply via email to