From 63a08139796ed2e9c3d3aebb75ab8ca12f8b1e1f Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 25 Jan 2013 20:39:43 +0000 Subject: [PATCH] Fix an error in ReleaseLiteral. git-svn-id: svn://svn.cc65.org/cc65/trunk@5967 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/litpool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }