mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-27 21:51:33 +01:00
* fixed qword_str for values with bit 63 = 1
This commit is contained in:
parent
e72e5a0cfa
commit
bf5d803a93
@ -316,8 +316,8 @@
|
|||||||
begin
|
begin
|
||||||
hs:='';
|
hs:='';
|
||||||
repeat
|
repeat
|
||||||
hs:=chr(longint(value mod 10)+48)+hs;
|
hs:=chr(longint(value mod qword(10))+48)+hs;
|
||||||
value:=value div 10;
|
value:=value div qword(10);
|
||||||
until value=0;
|
until value=0;
|
||||||
s:=hs;
|
s:=hs;
|
||||||
end;
|
end;
|
||||||
@ -477,7 +477,10 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$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
|
* val for int64 hopefully works now correct
|
||||||
|
|
||||||
Revision 1.6 2000/12/09 20:52:40 florian
|
Revision 1.6 2000/12/09 20:52:40 florian
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user