Browse Source

* win32 prefix is I64

peter 22 years ago
parent
commit
b6289a09d7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test/cg/tprintf.pp

+ 1 - 1
tests/test/cg/tprintf.pp

@@ -11,7 +11,7 @@ uses
 procedure printf(const formatstr : pchar; const args : array of const);cdecl; external name 'printf';
 procedure sprintf(p : pchar;const formatstr : pchar; const args : array of const);cdecl; external name 'sprintf';
 const
-  int64prefix='q';
+  int64prefix='I64';
 {$else}
 {$linklib c}
 procedure printf(const formatstr : pchar; const args : array of const);cdecl; external;