hotspot/src/share/vm/oops/instanceKlass.cpp
changeset 24424 2658d7834c6e
parent 24351 61b33cc6d3cf
child 24658 e41df2fc6e87
--- a/hotspot/src/share/vm/oops/instanceKlass.cpp	Fri May 09 08:34:22 2014 -0700
+++ b/hotspot/src/share/vm/oops/instanceKlass.cpp	Fri May 09 16:50:54 2014 -0400
@@ -77,6 +77,8 @@
 #include "c1/c1_Compiler.hpp"
 #endif
 
+PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
+
 #ifdef DTRACE_ENABLED
 
 
@@ -2857,7 +2859,7 @@
   st->print(BULLET"instance size:     %d", size_helper());                        st->cr();
   st->print(BULLET"klass size:        %d", size());                               st->cr();
   st->print(BULLET"access:            "); access_flags().print_on(st);            st->cr();
-  st->print(BULLET"state:             "); st->print_cr(state_names[_init_state]);
+  st->print(BULLET"state:             "); st->print_cr("%s", state_names[_init_state]);
   st->print(BULLET"name:              "); name()->print_value_on(st);             st->cr();
   st->print(BULLET"super:             "); super()->print_value_on_maybe_null(st); st->cr();
   st->print(BULLET"sub:               ");