diff options
| author | karoly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2016-09-04 05:12:21 +0000 |
|---|---|---|
| committer | karoly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2016-09-04 05:12:21 +0000 |
| commit | e8ce3460bf0e55c125404ffd8d0eff4d199916ba (patch) | |
| tree | 9b22fcd786907d1a09457c05146544750388c0be /compiler/syscinfo.pas | |
| parent | 54dc41ad0118e2ba7198e0f342398cf851fffe30 (diff) | |
| download | fpc-e8ce3460bf0e55c125404ffd8d0eff4d199916ba.tar.gz | |
fixed builds on 32bit hosts to 64bit targets (broken by r34416)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@34421 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/syscinfo.pas')
| -rw-r--r-- | compiler/syscinfo.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/syscinfo.pas b/compiler/syscinfo.pas index 56f486e74b..94747d3c91 100644 --- a/compiler/syscinfo.pas +++ b/compiler/syscinfo.pas @@ -80,7 +80,7 @@ var function get_syscall_by_token(const token: ttoken): psyscallinfo; var - i: aint; + i: longint; begin result:=nil; for i:=low(syscall_conventions) to high(syscall_conventions) do @@ -93,7 +93,7 @@ end; function get_syscall_by_name(const name: string): psyscallinfo; var - i: aint; + i: longint; begin result:=nil; for i:=low(syscall_conventions) to high(syscall_conventions) do @@ -106,7 +106,7 @@ end; function get_default_syscall: tprocoption; var - i: aint; + i: longint; begin if not (default_syscall_convention in syscall_conventions_po) then begin |
