diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3d10add2cd..12197220a1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +19990722-14:30 CET Matthew Hamilton + * tests/working/inifiles.prg + cFile -> @cFile in fRead statement + + 19990722-03:30 GMT+2 Ryszard Glab *source/rtl/classes.c diff --git a/harbour/tests/working/inifiles.prg b/harbour/tests/working/inifiles.prg index a62be4afea..fe2d41a3f0 100644 --- a/harbour/tests/working/inifiles.prg +++ b/harbour/tests/working/inifiles.prg @@ -79,7 +79,7 @@ static function New(cFileName) Done := .f. while !Done cFile := space(256) - Done := (fread(hFile, cFile, 256) <= 0) + Done := (fread(hFile, @cFile, 256) <= 0) cFile := strtran(cFile, chr(10), '') // so we can just search for CHR(13)