mirror of https://gitlab.com/basile.b/dexed.git
fix windows building broken
This commit is contained in:
parent
c3a7574a8d
commit
cbc5987b9a
|
@ -95,11 +95,11 @@ begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function prettyReturnStatus(proc: TProcess): string;
|
function prettyReturnStatus(proc: TProcess): string;
|
||||||
{$IFDEF UNIX}
|
|
||||||
var
|
var
|
||||||
s: integer;
|
s: integer;
|
||||||
|
{$IFDEF UNIX}
|
||||||
u: integer;
|
u: integer;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
begin
|
begin
|
||||||
result := '';
|
result := '';
|
||||||
s := proc.ExitStatus;
|
s := proc.ExitStatus;
|
||||||
|
@ -153,7 +153,7 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
if result = '' then
|
if result = '' then
|
||||||
result := intToStr(s) + ' (indeterminate meaning)';
|
result := intToStr(s) + ' (undeterminated meaning)';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TCEProcess.create(aOwner: TComponent);
|
constructor TCEProcess.create(aOwner: TComponent);
|
||||||
|
|
Loading…
Reference in New Issue