From 8cb4788e13762d7856b74a5780015bd68be821b2 Mon Sep 17 00:00:00 2001 From: uz Date: Wed, 8 Jun 2011 06:51:05 +0000 Subject: [PATCH] Fix a compile problem with the Watcom compiler. git-svn-id: svn://svn.cc65.org/cc65/trunk@5040 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ca65/error.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ca65/error.c b/src/ca65/error.c index 3de780d86..53e4bc5c0 100644 --- a/src/ca65/error.c +++ b/src/ca65/error.c @@ -131,7 +131,7 @@ static void AddNotifications (const Collection* LineInfos) unsigned MaxCount = CollCount (LineInfos); if (MaxCount > 6) { MaxCount = 6; - } + } Skipped = CollCount (LineInfos) - MaxCount; for (I = 1; I < MaxCount; ++I) { /* Get next line info */ @@ -149,7 +149,8 @@ static void AddNotifications (const Collection* LineInfos) /* Add a note if we have more stuff that we won't output */ if (Skipped > 0) { - PrintMsg (GetSourcePos (CollConstAt (LineInfos, 0)), "Note", + const LineInfo* LI = CollConstAt (LineInfos, 0); + PrintMsg (GetSourcePos (LI), "Note", "Dropping %u additional line infos", Skipped); } }