From 79748afdc4261a34195b23bd14cd245a176f04d7 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 6 Nov 2022 17:38:12 -0500 Subject: [PATCH] Align the "; Next union/fragment" comments with their symbols --- src/link/output.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/link/output.c b/src/link/output.c index 00cfc294..0407a99c 100644 --- a/src/link/output.c +++ b/src/link/output.c @@ -469,9 +469,11 @@ static uint16_t writeMapBank(struct SortedSections const *sectList, if (sect->nextu) { // Announce the following "piece" if (sect->nextu->modifier == SECTION_UNION) - fprintf(mapFile, "\t\t; Next union\n"); + fprintf(mapFile, + "\t ; Next union\n"); else if (sect->nextu->modifier == SECTION_FRAGMENT) - fprintf(mapFile, "\t\t; Next fragment\n"); + fprintf(mapFile, + "\t ; Next fragment\n"); } sect = sect->nextu; // Also print symbols in the following "pieces"