minor fix reported by José Fco. Pérez

This commit is contained in:
Antonio Linares
2002-10-22 16:49:18 +00:00
parent 504a5aceee
commit fccdfef990

View File

@@ -1303,7 +1303,7 @@ BOOL hb_fsLock ( FHANDLE hFileHandle, ULONG ulStart,
break;
case FL_UNLOCK:
bResult = ( _locking( hFileHandle, _LK_UNLOCK, ulLength ) == 0 );
bResult = ( _locking( hFileHandle, _LK_UNLCK, ulLength ) == 0 );
break;
default:
@@ -1882,4 +1882,4 @@ BOOL hb_fsEof( FHANDLE hFileHandle )
#else
return eof( hFileHandle ) != 0;
#endif
}
}