Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): fix indentation in parse.c



details:   https://anonhg.NetBSD.org/src/rev/043625f88d94
branches:  trunk
changeset: 942028:043625f88d94
user:      rillig <rillig%NetBSD.org@localhost>
date:      Wed Nov 04 06:09:55 2020 +0000

description:
make(1): fix indentation in parse.c

diffstat:

 usr.bin/make/parse.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6f855e1d53b5 -r 043625f88d94 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Wed Nov 04 05:10:01 2020 +0000
+++ b/usr.bin/make/parse.c      Wed Nov 04 06:09:55 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.424 2020/11/04 04:49:32 rillig Exp $       */
+/*     $NetBSD: parse.c,v 1.425 2020/11/04 06:09:55 rillig Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -117,7 +117,7 @@
 #include "pathnames.h"
 
 /*     "@(#)parse.c    8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: parse.c,v 1.424 2020/11/04 04:49:32 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.425 2020/11/04 06:09:55 rillig Exp $");
 
 /* types and constants */
 
@@ -1850,7 +1850,7 @@
 
     /* Scan for one of the assignment operators outside a variable expansion */
     while (*p != '\0') {
-        char ch = *p++;
+       char ch = *p++;
        if (ch == '(' || ch == '{') {
            level++;
            continue;



Home | Main Index | Thread Index | Old Index