diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-06 19:59:59 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-06 19:59:59 +0000 |
commit | faccc32bb7c59a53878549eecfb9041c1d7a78f3 (patch) | |
tree | e2014b6ae0fc0ec6c167f25d57eb3e57e77ef46b /ext/Data | |
parent | 57b0da177c2b783cf692c833d7155067adca9d4b (diff) | |
download | perl-faccc32bb7c59a53878549eecfb9041c1d7a78f3.tar.gz |
More printf miscasts flushed out.
p4raw-id: //depot/cfgperl@4525
Diffstat (limited to 'ext/Data')
-rw-r--r-- | ext/Data/Dumper/Dumper.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Data/Dumper/Dumper.xs b/ext/Data/Dumper/Dumper.xs index 6f548bbaa7..125375facc 100644 --- a/ext/Data/Dumper/Dumper.xs +++ b/ext/Data/Dumper/Dumper.xs @@ -839,7 +839,7 @@ Data_Dumper_Dumpxs(href, ...) STRLEN nchars = 0; sv_setpvn(name, "$", 1); sv_catsv(name, varname); - (void) sprintf(tmpbuf, "%d", i+1); + (void) sprintf(tmpbuf, "%"IVdf, (IV)(i+1)); nchars = strlen(tmpbuf); sv_catpvn(name, tmpbuf, nchars); } |