Browse Source

* fixed inttohex overload choosing

git-svn-id: trunk@8322 -
Jonas Maebe 18 years ago
parent
commit
ffbb833805
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/webtbs/tw3973.pp

+ 1 - 1
tests/webtbs/tw3973.pp

@@ -128,7 +128,7 @@ var
     Writeln(Format('high of int64 is: %d', [Longlong]), ' ', IntToHex(Longlong, 16));
     {$IFDEF FPC}
     Quad := High(Quad);
-    Writeln(Format('high of quadword is: %u', [Quad]), ' ', IntToHex(Quad, 16));
+    Writeln(Format('high of quadword is: %u', [Quad]), ' ', IntToHex(int64(Quad), 16));
     {$ENDIF}
   end;