From: uz Date: Fri, 25 Jan 2013 20:39:43 +0000 (+0000) Subject: Fix an error in ReleaseLiteral. X-Git-Tag: V2.14~107 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=63a08139796ed2e9c3d3aebb75ab8ca12f8b1e1f;p=cc65 Fix an error in ReleaseLiteral. git-svn-id: svn://svn.cc65.org/cc65/trunk@5967 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/litpool.c b/src/cc65/litpool.c index 3d3aee745..cf8261320 100644 --- a/src/cc65/litpool.c +++ b/src/cc65/litpool.c @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 1998-2009, Ullrich von Bassewitz */ +/* (C) 1998-2013, Ullrich von Bassewitz */ /* Roemerstrasse 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ @@ -169,7 +169,7 @@ void ReleaseLiteral (Literal* L) /* Decrement the reference counter for the literal */ { --L->RefCount; - CHECK (L->RefCount >= 0 && (L->RefCount > 0 || !L->Output)); + CHECK (L->RefCount >= 0); }