hotspot/src/share/vm/runtime/vm_version.cpp
changeset 33105 294e48b4f704
parent 31620 53be635ad49c
child 33976 160793725e6f
--- a/hotspot/src/share/vm/runtime/vm_version.cpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/runtime/vm_version.cpp	Tue Sep 29 11:02:08 2015 +0200
@@ -85,7 +85,7 @@
 #ifdef ASSERT
 static void assert_digits(const char * s, const char * message) {
   for (int i = 0; s[i] != '\0'; i++) {
-    assert(isdigit(s[i]), message);
+    assert(isdigit(s[i]), "%s", message);
   }
 }
 #endif
@@ -154,7 +154,6 @@
 #endif
 }
 
-
 const char* Abstract_VM_Version::vm_info_string() {
   if (CodeCacheExtensions::use_pregenerated_interpreter()) {
     return "interpreted mode, pregenerated";