Fixed deprecated usage of readChars
This commit is contained in:
parent
98fe417488
commit
f8b15bb7c7
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ proc Load*(filename: string): ref Field =
|
|||
var data: array[4096, char]
|
||||
var lastReadIsCR = false
|
||||
while true:
|
||||
let n = file.readChars(data, 0, 4096)
|
||||
let n = file.readChars(data)
|
||||
if n <= 0:
|
||||
if f.lines.len == 0:
|
||||
if l == nil: # we got en empty file!
|
||||
|
|
Reference in a new issue