aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index 7b7110cb..fd81f73b 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.48 2011/05/03 16:01:57 roberto Exp roberto $ 2** $Id: lobject.c,v 2.49 2011/05/31 18:24:36 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -105,7 +105,7 @@ static int isneg (const char **s) {
105 105
106static lua_Number readhexa (const char **s, lua_Number r, int *count) { 106static lua_Number readhexa (const char **s, lua_Number r, int *count) {
107 while (lisxdigit(cast_uchar(**s))) { /* read integer part */ 107 while (lisxdigit(cast_uchar(**s))) { /* read integer part */
108 r = (r * 16.0) + (double)luaO_hexavalue(*(*s)++); 108 r = (r * 16.0) + cast_num(luaO_hexavalue(cast_uchar(*(*s)++)));
109 (*count)++; 109 (*count)++;
110 } 110 }
111 return r; 111 return r;