From 0098735e99f50721bf477ebf410d77c2ec80fbf5 Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 18 Feb 2013 20:39:52 +0000 Subject: [PATCH] .cosmetics git-svn-id: svn://ultimatepp.org/upp/trunk@5827 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uppsrc/Core/Stream.cpp b/uppsrc/Core/Stream.cpp index fea8424c9..f02ae2565 100644 --- a/uppsrc/Core/Stream.cpp +++ b/uppsrc/Core/Stream.cpp @@ -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 }