--- a/hotspot/src/share/vm/utilities/utf8.hpp Thu Jan 27 13:42:28 2011 -0800
+++ b/hotspot/src/share/vm/utilities/utf8.hpp Thu Jan 27 16:11:27 2011 -0800
@@ -51,8 +51,8 @@
static char* next_character(const char* str, jint* value);
// Utility methods
- static jbyte* strrchr(jbyte* base, int length, jbyte c);
- static bool equal(jbyte* base1, int length1, jbyte* base2, int length2);
+ static const jbyte* strrchr(const jbyte* base, int length, jbyte c);
+ static bool equal(const jbyte* base1, int length1, const jbyte* base2,int length2);
static bool is_supplementary_character(const unsigned char* str);
static jint get_supplementary_character(const unsigned char* str);
};