X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHUtils%2FSMESH_File.cxx;h=d75cd108adc87461108262cbca7bdc22a3cc4c99;hp=c31c2e8bc1e90cc2e9e5a26240907a4b6a826b97;hb=9acd4347a6c7488c3ead4c68861b0944e83e545f;hpb=683b9e264c22c081ba5cf3c20639480d03d1d994 diff --git a/src/SMESHUtils/SMESH_File.cxx b/src/SMESHUtils/SMESH_File.cxx index c31c2e8bc..d75cd108a 100644 --- a/src/SMESHUtils/SMESH_File.cxx +++ b/src/SMESHUtils/SMESH_File.cxx @@ -171,7 +171,7 @@ long SMESH_File::size() if ( _size >= 0 ) return _size; // size of an open file boost::system::error_code err; - uintmax_t size = boofs::file_size( _name, err ); + boost::uintmax_t size = boofs::file_size( _name, err ); _error = err.message(); return err ? -1 : (long) size;