(svn r2654) SlWriteUint16() should have a uint16 as parameter, not some arbitrary enum

This commit is contained in:
tron 2005-07-20 19:08:02 +00:00
parent 3720503e7c
commit 4130198f48
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static inline uint64 SlReadUint64(void)
return (uint64)x << 32 | y;
}
static inline void SlWriteUint16(VarType v)
static inline void SlWriteUint16(uint16 v)
{
SlWriteByte((byte)(v >> 8));
SlWriteByte((byte)v);