git: 3afba490c126 - main - libdtrace: fix indendation in dt_printd()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Mar 2023 13:35:33 UTC
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");