Silence warning in hex_from0().

oldstable
Gerald Pfeifer 2002-10-15 02:19:06 +00:00 committed by Alexandre Julliard
parent 14e81e8fb3
commit 28a7d3cbf0
1 changed files with 2 additions and 0 deletions

View File

@ -105,7 +105,9 @@ static inline int hex_from0(char ch)
if (ch >= '0' && ch <= '9') return ch - '0';
if (ch >= 'A' && ch <= 'F') return ch - 'A' + 10;
if (ch >= 'a' && ch <= 'f') return ch - 'a' + 10;
assert(0);
return 0;
}
static inline unsigned char hex_to0(int x)