.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@5827 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-02-18 20:39:52 +00:00
parent 3d8fceaa87
commit 0098735e99

View file

@ -94,7 +94,7 @@ void Stream::Put64(const void *data, int64 size)
Put(ptr, (int)size);
#else
ASSERT(size <= INT_MAX);
Put(data, size);
Put(data, (int)size);
#endif
}
@ -115,7 +115,7 @@ int64 Stream::Get64(void *data, int64 size)
return n + q;
#else
ASSERT(size <= INT_MAX);
return Get(data, size);
return Get(data, (int)size);
#endif
}