From 817f8674af64a82c6f9c8b855446800a5642764e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 16 Jun 2011 11:14:31 -0300 Subject: [PATCH] avoid warning about -unsigned value --- lstrlib.c | 4 ++-- ltable.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lstrlib.c b/lstrlib.c index c90297b2..20199fdb 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.167 2011/05/03 16:01:57 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.168 2011/06/09 18:22:47 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -45,7 +45,7 @@ static int str_len (lua_State *L) { /* translate a relative string position: negative means back from end */ static size_t posrelat (ptrdiff_t pos, size_t len) { if (pos >= 0) return (size_t)pos; - else if (-(size_t)pos > len) return 0; + else if (0u - (size_t)pos > len) return 0; else return len - ((size_t)-pos) + 1; } diff --git a/ltable.c b/ltable.c index 315fc61e..9abf47eb 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.58 2011/06/02 19:31:40 roberto Exp roberto $ +** $Id: ltable.c,v 2.59 2011/06/09 18:23:27 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -88,7 +88,7 @@ static Node *hashnum (const Table *t, lua_Number n) { int i; luai_hashnum(i, n); if (i < 0) { - if ((unsigned int)i == -(unsigned int)i) + if (cast(unsigned int, i) == 0u - i) /* use unsigned to avoid overflows */ i = 0; /* handle INT_MIN */ i = -i; /* must be a positive value */ }