[PATCH 48/71] xfs_db: print one array element per line
Darrick J. Wong
darrick.wong at oracle.com
Thu Aug 25 18:51:41 CDT 2016
Print one array element per line so that the debugger output isn't
a gigantic pile of screen snow.
Signed-off-by: Darrick J. Wong <darrick.wong at oracle.com>
---
db/print.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/db/print.c b/db/print.c
index 998daf4..e31372f 100644
--- a/db/print.c
+++ b/db/print.c
@@ -197,7 +197,7 @@ print_sarray(
i < count && !seenint();
i++, bitoff += size) {
if (array)
- dbprintf("%d:", i + base);
+ dbprintf("\n%d:", i + base);
for (f = flds, first = 1; f->name; f++) {
if (f->flags & FLD_SKIPALL)
continue;
More information about the xfs
mailing list