From dc8a39d884edc005d8a09f248bb92bec69bf496c Mon Sep 17 00:00:00 2001 From: Eddie Runia Date: Thu, 22 Jul 1999 12:33:58 +0000 Subject: [PATCH] see changelog --- harbour/ChangeLog | 5 +++++ harbour/tests/working/inifiles.prg | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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)