mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-10 03:54:54 -06:00
.cosmetics
git-svn-id: svn://ultimatepp.org/upp/trunk@5827 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
3d8fceaa87
commit
0098735e99
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue