From d1e25ea976303707303329f627cd02546f9e222c Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 20 Feb 2018 14:34:50 +0100 Subject: tools.pas: fillchar -> fillChar --- tools.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.pas b/tools.pas index c290275..032e3a7 100644 --- a/tools.pas +++ b/tools.pas @@ -735,7 +735,7 @@ begin rb:=0; s:=''; setLength(dummy,1024); - fillchar(dummy[0],length(dummy),0); + fillChar(dummy[0],length(dummy),0); while p.running do begin while p.stderr.numBytesAvailable>0 do p.stderr.read(dummy[0],min(length(dummy),p.stderr.numBytesAvailable)); -- cgit v1.2.3-54-g00ecf