projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e8b300
)
detypo #6494
author
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 2 Aug 2000 21:54:26 +0000
(21:54 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 2 Aug 2000 21:54:26 +0000
(21:54 +0000)
p4raw-id: //depot/perl@6495
ext/Data/Dumper/Dumper.xs
patch
|
blob
|
history
diff --git
a/ext/Data/Dumper/Dumper.xs
b/ext/Data/Dumper/Dumper.xs
index
6df47a5
..
d3cf292
100644
(file)
--- a/
ext/Data/Dumper/Dumper.xs
+++ b/
ext/Data/Dumper/Dumper.xs
@@
-585,7
+585,7
@@
DD_dump(pTHX_ SV *val, char *name, STRLEN namelen, SV *retval, HV *seenhv,
if (SvIOK(val)) {
STRLEN len;
if (SvIsUV(val))
- (void) sprintf(tmpbuf, "%"UV
d
f, SvUV(val));
+ (void) sprintf(tmpbuf, "%"UV
u
f, SvUV(val));
else
(void) sprintf(tmpbuf, "%"IVdf, SvIV(val));
len = strlen(tmpbuf);