< prev index next >

src/share/vm/gc/g1/g1AllocRegion.cpp

Print this page

        

@@ -138,11 +138,11 @@
   }
   ShouldNotReachHere();
 }
 
 void G1AllocRegion::fill_in_ext_msg(ar_ext_msg* msg, const char* message) {
-  msg->append("[%s] %s c: %u b: %s r: "PTR_FORMAT" u: "SIZE_FORMAT,
+  msg->append("[%s] %s c: %u b: %s r: " PTR_FORMAT " u: " SIZE_FORMAT,
               _name, message, _count, BOOL_TO_STR(_bot_updates),
               p2i(_alloc_region), _used_bytes_before);
 }
 
 void G1AllocRegion::init() {

@@ -215,11 +215,11 @@
                    HR_FORMAT, HR_FORMAT_PARAMS(alloc_region));
     }
 
     if (G1_ALLOC_REGION_TRACING > 1) {
       if (result != NULL) {
-        jio_snprintf(rest_buffer, buffer_length, SIZE_FORMAT" "PTR_FORMAT,
+        jio_snprintf(rest_buffer, buffer_length, SIZE_FORMAT " " PTR_FORMAT,
                      word_size, result);
       } else if (word_size != 0) {
         jio_snprintf(rest_buffer, buffer_length, SIZE_FORMAT, word_size);
       } else {
         jio_snprintf(rest_buffer, buffer_length, "");
< prev index next >