From 2e06f50286a992da474d0bbec3de1f77e23f7878 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Tue, 19 May 2015 21:15:57 +0200 Subject: [PATCH] List values in the data column, not the location column. --- listing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listing.c b/listing.c index 95acf15..a5dc295 100644 --- a/listing.c +++ b/listing.c @@ -115,7 +115,7 @@ void list_value( if (dolist()) { /* Print the value and go */ binline[0] = 0; - sprintf(binline, "%*s%*d %6.6o", (int)SIZEOF_MEMBER(LSTFORMAT, flag), "", + sprintf(binline, "%*s%*d %6.6o", (int)SIZEOF_MEMBER(LSTFORMAT, flag), "", (int)SIZEOF_MEMBER(LSTFORMAT, line_number), str->line, word & 0177777); } }