Patch level :4.0 840

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :aggiunto include per definizione di INT_MAX


git-svn-id: svn://10.65.10.50/trunk@15866 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2007-12-13 15:11:01 +00:00
parent 8257473361
commit 376ed6df6f

View File

@ -18,6 +18,7 @@
#include "agasys.h"
#include "fstrcmp.h"
#include <limits.h>
#include "matche.h"
#include "xvtpdf.h"
@ -2158,7 +2159,7 @@ long xvt_fsys_file_attr(const char* path, long attr)
case XVT_FILE_ATTR_SIZE:
{
const wxULongLong sz = wxFileName::GetSize(name);
ret = sz.GetHi() != 0 ? MAXINT : sz.GetLo();
ret = sz.GetHi() != 0 ? INT_MAX : sz.GetLo();
}
break;
case XVT_FILE_ATTR_MTIME: