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;
|
||||
|
||||
function prettyReturnStatus(proc: TProcess): string;
|
||||
{$IFDEF UNIX}
|
||||
var
|
||||
s: integer;
|
||||
{$IFDEF UNIX}
|
||||
u: integer;
|
||||
{$ENDIF}
|
||||
{$ENDIF}
|
||||
begin
|
||||
result := '';
|
||||
s := proc.ExitStatus;
|
||||
|
@ -153,7 +153,7 @@ begin
|
|||
end;
|
||||
{$ENDIF}
|
||||
if result = '' then
|
||||
result := intToStr(s) + ' (indeterminate meaning)';
|
||||
result := intToStr(s) + ' (undeterminated meaning)';
|
||||
end;
|
||||
|
||||
constructor TCEProcess.create(aOwner: TComponent);
|
||||
|
|
Loading…
Reference in New Issue