mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-23 13:31:43 +02:00
* fixed qword_str for values with bit 63 = 1
This commit is contained in:
parent
e72e5a0cfa
commit
bf5d803a93
@ -316,8 +316,8 @@
|
||||
begin
|
||||
hs:='';
|
||||
repeat
|
||||
hs:=chr(longint(value mod 10)+48)+hs;
|
||||
value:=value div 10;
|
||||
hs:=chr(longint(value mod qword(10))+48)+hs;
|
||||
value:=value div qword(10);
|
||||
until value=0;
|
||||
s:=hs;
|
||||
end;
|
||||
@ -477,7 +477,10 @@
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.7 2000-12-10 15:00:14 florian
|
||||
Revision 1.8 2001-03-03 12:39:09 jonas
|
||||
* fixed qword_str for values with bit 63 = 1
|
||||
|
||||
Revision 1.7 2000/12/10 15:00:14 florian
|
||||
* val for int64 hopefully works now correct
|
||||
|
||||
Revision 1.6 2000/12/09 20:52:40 florian
|
||||
|
Loading…
Reference in New Issue
Block a user