Commit e6868989 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Try to explain to static checkers that we know what we're doing.

parent 32cab689
......@@ -44,9 +44,10 @@
extern const uint16_t vct_typtab[256];
static inline int
vct_is(unsigned char x, uint16_t y)
vct_is(int x, uint16_t y)
{
x &= 0xff;
return (vct_typtab[x] & (y));
}
......
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