libdtrace: fix indendation in dt_printd()

No functional change.

Reviewed by:	markj
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D39145
This commit is contained in:
Christos Margiolis 2023-03-20 09:34:20 -04:00 committed by Mark Johnston
parent ef9f49a21a
commit 3afba490c1
1 changed files with 1 additions and 1 deletions

View File

@ -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");