Ignore:
Timestamp:
03/08/16 08:05:51 (9 years ago)
Author:
epyon
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/io/c_stream.cc

    r486 r487  
    5050{
    5151        NV_ASSERT( buffer != nullptr && max_count != 0, "Bad parameter passed to write!" );
    52         char* result = ::fgets( buffer, max_count, reinterpret_cast<FILE*>( m_file ) );
     52        char* result = ::fgets( buffer, static_cast<int>( max_count ), reinterpret_cast<FILE*>( m_file ) );
    5353        if ( !result ) return false;
    5454        return true;
Note: See TracChangeset for help on using the changeset viewer.