Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Mar 2023 13:35:33 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3afba490c126 - main - libdtrace: fix indendation in dt_printd()
Message-ID:  <202303201335.32KDZXI5074100@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=3afba490c1266200e9fd899f2494aa47f71c6095

commit 3afba490c1266200e9fd899f2494aa47f71c6095
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2023-03-20 13:34:20 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-03-20 13:34:20 +0000

    libdtrace: fix indendation in dt_printd()
    
    No functional change.
    
    Reviewed by:    markj
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D39145
---
 cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c
index f028f99ccf64..2b85dd2b26b6 100644
--- a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c
+++ b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c
@@ -4767,8 +4767,8 @@ dt_printd(dt_node_t *dnp, FILE *fp, int depth)
 			dt_printd(dnp->dn_pred, fp, 0);
 			(void) fprintf(fp, "/\n");
 		}
-			(void) fprintf(fp, "{\n");
 
+		(void) fprintf(fp, "{\n");
 		for (arg = dnp->dn_acts; arg != NULL; arg = arg->dn_list)
 			dt_printd(arg, fp, depth + 1);
 		(void) fprintf(fp, "}\n");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202303201335.32KDZXI5074100>