From df2f699897b616e2ec5350ea5b0337041b1d8483 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 21 Jun 2010 16:58:21 +0000 Subject: [PATCH] 2010-06-20 18:57 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * src/rtl/filesys.c ! Fixed typo in last commit affecting Windows builds. --- harbour/ChangeLog | 4 ++++ harbour/src/rtl/filesys.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 614d29f8bf..0f2e86f2b8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-06-20 18:57 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/rtl/filesys.c + ! Fixed typo in last commit affecting Windows builds. + 2010-06-21 17:51 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rtl/filesys.c ! fixed typo reportyed by Tamas - thanks diff --git a/harbour/src/rtl/filesys.c b/harbour/src/rtl/filesys.c index ee88dfb7bc..55b14c86ed 100644 --- a/harbour/src/rtl/filesys.c +++ b/harbour/src/rtl/filesys.c @@ -1514,7 +1514,7 @@ HB_SIZE hb_fsReadLarge( HB_FHANDLE hFileHandle, void * pBuff, HB_SIZE nCount ) { # if defined( HB_OS_WIN_64 ) HANDLE hWFileHandle = DosToWinHandle( hFileHandle ); - BOOL bfResult = TRUE; + BOOL bResult = TRUE; nRead = 0;