diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-09-14 22:04:38 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-09-14 22:04:38 +0100 |
commit | effdc72e16ec33a6bcb008b74734658c5c42ed45 (patch) | |
tree | f77662ee06afb3831f0a0fe0cd05dfbf4e594e28 /src/label.c | |
parent | ace88543a32f2c6dfc6a3aa17bd9a35f55a0b1d8 (diff) | |
parent | 84c6a929a6b78059f71b38c5f4e1b4b67ef6a908 (diff) |
Merge branch 'master' of https://github.com/noddybox/casm
Diffstat (limited to 'src/label.c')
-rw-r--r-- | src/label.c | 2 |
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); |