git: 3813808b1f2b - stable/13 - libdtrace: fix indendation in dt_printd()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 27 Mar 2023 12:51:41 UTC
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=3813808b1f2b492601031128179881434b930b5e commit 3813808b1f2b492601031128179881434b930b5e Author: Christos Margiolis <christos@FreeBSD.org> AuthorDate: 2023-03-20 13:34:20 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2023-03-27 12:49:30 +0000 libdtrace: fix indendation in dt_printd() No functional change. Reviewed by: markj MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D39145 (cherry picked from commit 3afba490c1266200e9fd899f2494aa47f71c6095) --- 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");