applied patch #1714416 - patch to build on hpux

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5181 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-06-27 14:15:00 +00:00
parent 3aa59a650a
commit 81afed0591
6 changed files with 144 additions and 3 deletions

View file

@ -69,7 +69,7 @@ size_t file_size(ifstream& file) {
file.seekg(0, ios::end);
ifstream::pos_type result = file.tellg();
assert(result >= 0);
assert(result >= (ifstream::pos_type)0);
file.seekg(pos);