2009-09-23 00:13 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)

* contrib/hbmemio/memio.c
    ! fixed typo in hb_memfsDelete()
This commit is contained in:
Mindaugas Kavaliauskas
2009-09-22 21:11:13 +00:00
parent c5f3c610ea
commit 437754c513
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-23 00:13 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
* contrib/hbmemio/memio.c
! fixed typo in hb_memfsDelete()
2009-09-22 22:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/global.mk
! Typo

View File

@@ -259,7 +259,7 @@ HB_MEMFS_EXPORT BOOL hb_memfsDelete( const char * szName )
ULONG ulFile;
HB_MEMFSMT_LOCK
if( ( ulFile = memfsInodeFind( szName, NULL ) ) != 0 )
if( ( ulFile = memfsInodeFind( szName, NULL ) ) == 0 )
{
HB_MEMFSMT_UNLOCK
return 0;