Ticket #2176: operations.cpp.patch

File operations.cpp.patch, 389 bytes (added by glyn.matthews@…, 14 years ago)

Patch for libs/filesystem/src/operations.cpp

  • operations.cpp

     
    585585        int err = ::unlink( p );
    586586        if ( err != EPERM )
    587587          return err;
    588         return ::rmdir( p )
     588        return ::rmdir( p );
    589589#     else
    590590        return std::remove( p );
    591591#     endif