see changelog

This commit is contained in:
Eddie Runia
1999-07-22 12:33:58 +00:00
parent 39b81c603b
commit dc8a39d884
2 changed files with 6 additions and 1 deletions

View File

@@ -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 <rglab@imid.med.pl>
*source/rtl/classes.c

View File

@@ -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)