aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2016-08-19 14:56:55 +0100
committerIan C <ianc@noddybox.co.uk>2016-08-19 14:56:55 +0100
commit4f04fe543db2a8139ff32216e7ba7128ce76081d (patch)
treed5b65ce53653c6f685bb1057320a42d8b6630aca
parent1ba149f7a4057a9cc08dd2883e8f715efc125498 (diff)
Expanded label dump to 32 bits
-rw-r--r--src/label.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/label.c b/src/label.c
index 440ea8d..946a6ea 100644
--- a/src/label.c
+++ b/src/label.c
@@ -496,7 +496,7 @@ void LabelDump(FILE *fp, int dump_private)
if (g->label.name[0] != '_' || dump_private)
{
- fprintf(fp, "; %-*s = $%4.4x (%d)\n", MAX_LABEL_SIZE,
+ fprintf(fp, "; %-*s = $%8.8x (%d)\n", MAX_LABEL_SIZE,
g->label.name,
(unsigned)g->label.value,
g->label.value);