From: uz Date: Mon, 15 Aug 2011 16:09:34 +0000 (+0000) Subject: Line number is now an unsigned X-Git-Tag: V2.13.3~293 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d02c1cc41719c5d8a3a3ff42be29ef69ebae1533;p=cc65 Line number is now an unsigned git-svn-id: svn://svn.cc65.org/cc65/trunk@5169 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/od65/dump.c b/src/od65/dump.c index bb1529232..28798a6a0 100644 --- a/src/od65/dump.c +++ b/src/od65/dump.c @@ -768,7 +768,7 @@ void DumpObjLineInfo (FILE* F, unsigned long Offset) /* Print the data */ printf (" Type:%26u\n", LI_GET_TYPE (Type)); printf (" Count:%25u\n", LI_GET_COUNT (Type)); - printf (" Line:%26lu\n", Pos.Line); + printf (" Line:%26u\n", Pos.Line); printf (" Col:%27u\n", Pos.Col); printf (" Name:%26u\n", Pos.Name); }