From fccdfef990e1d0e0cf4467bce608d36f313777d0 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Tue, 22 Oct 2002 16:49:18 +0000 Subject: [PATCH] =?UTF-8?q?minor=20fix=20reported=20by=20Jos=C3=A9=20Fco.?= =?UTF-8?q?=20P=C3=A9rez?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- harbour/source/rtl/filesys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/harbour/source/rtl/filesys.c b/harbour/source/rtl/filesys.c index ac5b141389..16ea8a7909 100644 --- a/harbour/source/rtl/filesys.c +++ b/harbour/source/rtl/filesys.c @@ -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 -} +} \ No newline at end of file