From: helly Date: Thu, 21 Jul 2005 16:41:33 +0000 (+0000) Subject: - Fix compiler warning X-Git-Tag: 0.13.6~610 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ecb1bed4772f6d8556a1cc3c1aec079c04f60e79;p=re2c - Fix compiler warning --- diff --git a/actions.cc b/actions.cc index 1a3f3954..3f32d279 100644 --- a/actions.cc +++ b/actions.cc @@ -421,7 +421,7 @@ uint CatOp::fixedLength() if ((l2 = exp2->fixedLength()) != ~0u) return l1 + l2; - return ~0; + return ~0u; } void CatOp::compile(Char *rep, Ins *i)