changeset in /hg/icedtea: 2007-11-13 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Wed Jan 16 07:09:23 PST 2008
changeset 002be2935e5d in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=002be2935e5d
description:
2007-11-13 Gary Benson <gbenson at redhat.com>
Arnaud Vandyck <avdyk at debian.org>
* ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
(JVM_handle_linux_signal): Don't fail with -Wwrite-strings.
diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp | 2 +-
diffs (25 lines):
diff -r 336d429edc67 -r 002be2935e5d ChangeLog
--- a/ChangeLog Tue Nov 13 10:20:57 2007 -0500
+++ b/ChangeLog Tue Nov 13 10:37:09 2007 -0500
@@ -1,3 +1,9 @@ 2007-11-13 Gary Benson <gbenson at redhat
+2007-11-13 Gary Benson <gbenson at redhat.com>
+ Arnaud Vandyck <avdyk at debian.org>
+
+ * ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
+ (JVM_handle_linux_signal): Don't fail with -Wwrite-strings.
+
2007-11-13 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/cpu/ppc/vm/interpreterRT_ppc.cpp
diff -r 336d429edc67 -r 002be2935e5d ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
--- a/ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Tue Nov 13 10:20:57 2007 -0500
+++ b/ports/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Tue Nov 13 10:37:09 2007 -0500
@@ -108,7 +108,7 @@ JVM_handle_linux_signal(int sig,
}
}
- char *fmt = "caught unhandled signal %d";
+ const char *fmt = "caught unhandled signal %d";
char buf[64];
sprintf(buf, fmt, sig);
More information about the distro-pkg-dev
mailing list