Commit 28a7d3cb authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Silence warning in hex_from0().

parent 14e81e8f
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment