[9844] Fix some whitespace errors.

Signed-off-by: hunuza <hunuza@gmail.com>
This commit is contained in:
hunuza 2010-05-07 12:24:29 +02:00
parent ec0141261a
commit 68abd76c97
20 changed files with 88 additions and 88 deletions

View file

@ -297,7 +297,7 @@ class ByteBuffer
void read(uint8 *dest, size_t len)
{
if(_rpos + len > size())
throw ByteBufferException(false, _rpos, len, size());
throw ByteBufferException(false, _rpos, len, size());
memcpy(dest, &_storage[_rpos], len);
_rpos += len;
}
@ -406,7 +406,7 @@ class ByteBuffer
void put(size_t pos, const uint8 *src, size_t cnt)
{
if(pos + cnt > size())
throw ByteBufferException(true, pos, cnt, size());
throw ByteBufferException(true, pos, cnt, size());
memcpy(&_storage[pos], src, cnt);
}