diff --git a/src/Standard/Standard_ReadLineBuffer.hxx b/src/Standard/Standard_ReadLineBuffer.hxx index 1029248d20..94ae850e4c 100644 --- a/src/Standard/Standard_ReadLineBuffer.hxx +++ b/src/Standard/Standard_ReadLineBuffer.hxx @@ -172,7 +172,7 @@ protected: size_t theLen, size_t& theReadLen) { - theReadLen = theStream.read (myReadBuffer.data(), theLen).gcount(); + theReadLen = (size_t )theStream.read (myReadBuffer.data(), theLen).gcount(); return !theStream.bad(); }