From 784235c5e6928c1b8dc9377812f2cd21a44c029c Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Wed, 27 Dec 2006 15:34:16 +0000 Subject: STLPort warning fixed git-svn-id: http://pugixml.googlecode.com/svn/trunk@25 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 910c082..63bd36a 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -1914,7 +1914,7 @@ namespace pugi { free(); - int length = 0, pos = stream.tellg(); + std::streamoff length = 0, pos = stream.tellg(); stream.seekg(0, std::ios_base::end); length = stream.tellg(); stream.seekg(pos, std::ios_base::beg); -- cgit v1.2.3