From 73adfe2dcfbefd17f5beeb83457be739ab4c5c5d Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 10 Sep 2006 10:17:12 +0000 Subject: [PATCH] removed strange (and probably wrong) assertion [r8204] --- ir/tv/strcalc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ir/tv/strcalc.c b/ir/tv/strcalc.c index d30e2ee0e..039d9be64 100644 --- a/ir/tv/strcalc.c +++ b/ir/tv/strcalc.c @@ -850,7 +850,6 @@ static void _shr(const char *val1, char *buffer, long offset, int radius, unsign int bitoffset = 0; assert((offset >= 0) || (0 && "negative rightshift")); - assert(((_sign(val1) != -1) || is_signed) || (0 && "unsigned mode and negative value")); assert(((!_bitisset(val1[(radius-1)/4], (radius-1)%4)) || !is_signed || (_sign(val1) == -1)) || (0 && "value is positive, should be negative")); assert(((_bitisset(val1[(radius-1)/4], (radius-1)%4)) || !is_signed || (_sign(val1) == 1)) || (0 && "value is negative, should be positive")); -- 2.20.1