diff --git a/ChangeLog.txt b/ChangeLog.txt index 3488908c74..9e26d69ec2 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -10,6 +10,10 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2015-07-24 18:55 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * src/rtl/vfile.c + ! fixed typo in my last commit (Thanks to Viktor for verification) + 2015-07-24 10:28 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * include/hbapifs.h * src/rtl/filebuf.c diff --git a/src/rtl/vfile.c b/src/rtl/vfile.c index 07023e3d9d..d721e8a4c4 100644 --- a/src/rtl/vfile.c +++ b/src/rtl/vfile.c @@ -764,7 +764,7 @@ HB_FUNC( HB_VFSIZE ) uiError = hb_fsError(); if( pDir ) { - PHB_ITEM pEntry = hb_arrayGetPtr( pDir, 1 ); + PHB_ITEM pEntry = hb_arrayGetItemPtr( pDir, 1 ); if( pEntry ) nSize = hb_arrayGetNInt( pEntry, F_SIZE );