mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 15:45:57 +02:00
Fix compilation of nds and wii OS rtl
This commit is contained in:
parent
429438fbb9
commit
f4580ff612
@ -159,7 +159,7 @@ function paramstr(l: longint) : string;
|
||||
begin
|
||||
paramstr := execpathstr;
|
||||
end
|
||||
else (l > 0) and (l < argc) then
|
||||
else if (l > 0) and (l < argc) then
|
||||
paramstr := strpas(argv[l])
|
||||
else
|
||||
paramstr := '';
|
||||
|
@ -128,7 +128,7 @@ function paramstr(l: longint) : string;
|
||||
begin
|
||||
paramstr := execpathstr;
|
||||
end
|
||||
else (l > 0) and ( l < argc ) then
|
||||
else if (l > 0) and ( l < argc ) then
|
||||
paramstr:=strpas(argv[l])
|
||||
else
|
||||
paramstr:='';
|
||||
|
Loading…
Reference in New Issue
Block a user