diff options
author | 2006-09-26 05:11:58 +0000 | |
---|---|---|
committer | 2006-09-26 05:11:58 +0000 | |
commit | 037c71612c4542414298c6b68dea66ba4555b163 (patch) | |
tree | 8c6549da4dd4f45723889e31554952b61996e581 /sys-cluster/pvm/files | |
parent | New upstream version. (diff) | |
download | gentoo-2-037c71612c4542414298c6b68dea66ba4555b163.tar.gz gentoo-2-037c71612c4542414298c6b68dea66ba4555b163.tar.bz2 gentoo-2-037c71612c4542414298c6b68dea66ba4555b163.zip |
Fix a printf formatting bug, from Fedora.
(Portage version: 2.1.2_pre1-r3)
Diffstat (limited to 'sys-cluster/pvm/files')
-rw-r--r-- | sys-cluster/pvm/files/pvm-3.4.5-bug_147337.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-cluster/pvm/files/pvm-3.4.5-bug_147337.patch b/sys-cluster/pvm/files/pvm-3.4.5-bug_147337.patch new file mode 100644 index 000000000000..6bd9b97b80ea --- /dev/null +++ b/sys-cluster/pvm/files/pvm-3.4.5-bug_147337.patch @@ -0,0 +1,11 @@ +--- pvm3.4.5/src/pvmlog.c.bug_147337 2004-05-26 11:56:36.000000000 -0400 ++++ pvm3.4.5/src/pvmlog.c 2005-02-25 13:54:05.842252000 -0500 +@@ -488,7 +488,7 @@ + pvmlogprintf("em=0x%lx\n", (long) em); + + for (i=0; i < 10 ; i++ ) +- pvmlogprintf("[%x/%c]", em[i]); ++ pvmlogprintf("[%x/%c]", em[i], em[i]); + pvmlogprintf("\n"); + + pvmlogprintf("%s: %s\n", s, em); |