K 10 svn:author V 3 bde K 8 svn:date V 27 2002-05-13T14:34:47.000000Z K 7 svn:log V 321 Fixed a semantic error. va_arg(ap, u_short) is nonsense except on i386's with 16-bit ints, since u_short is promoted when it is passed to a varargs function. gcc now warns about this. We always pass small integers (this is well obuscated), so there are no conversion problems. Fixed a related style bug (bogus cast). END