From 0e67298dffd2bf338e22f6a40bbc768804ffd8f9 Mon Sep 17 00:00:00 2001 From: rlewicki Date: Tue, 25 Oct 2022 23:37:09 +0200 Subject: [PATCH] Fix indention when writing EMPTY label inside link output.c file --- src/link/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/link/output.c b/src/link/output.c index 18e2dac3..efdd2099 100644 --- a/src/link/output.c +++ b/src/link/output.c @@ -482,7 +482,7 @@ static uint16_t writeMapBank(struct SortedSections const *sectList, writeEmptySpace(prevEndAddr, bankEndAddr); if (used == 0) { - fputs(" EMPTY\n\n", mapFile); + fputs("\tEMPTY\n\n", mapFile); } else { uint16_t slack = sectionTypeInfo[type].size - used;