diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-12-05 00:39:29 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-12-05 00:39:29 -0800 |
commit | 015be10436818e576a2c32dbf86d6fd597d0a1ca (patch) | |
tree | bc4c06ffe7d1217188b43e27db17d9a24bff1d58 | |
parent | 0cfa64620274c84286ce6acdfaec4967126ec67d (diff) |
report-layout: use lower case 't' for OBJECT_TAG
Reserve upper case just for table type objects like arrays and
hash tables.
-rw-r--r-- | src/report-layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/report-layout.c b/src/report-layout.c index baba4fb..f13917e 100644 --- a/src/report-layout.c +++ b/src/report-layout.c @@ -37,7 +37,7 @@ static const char type_map[_OBJECT_TYPE_MAX] = { [OBJECT_DATA_HASH_TABLE] = 'D', [OBJECT_FIELD_HASH_TABLE] = 'F', [OBJECT_ENTRY_ARRAY] = 'A', - [OBJECT_TAG] = 'T', + [OBJECT_TAG] = 't', }; /* TODO: this should be either argv settable or just determined at runtime */ @@ -131,7 +131,7 @@ THUNK_DEFINE_STATIC(per_journal, iou_t *, iou, journal_t **, journal_iter) "|N| object spans N page boundaries (page size used=%u)\n" "| single page boundary\n" "+N N bytes of alignment padding\n" - "+ single byte alignment padding\n\n", + "+ single byte of alignment padding\n\n", type_map[OBJECT_UNUSED], type_map[OBJECT_DATA], |