changeset 13851:b3e69d1f5da0

fixed non-PRODUCT build compilation error
author Doug Simon <doug.simon@oracle.com>
date Fri, 31 Jan 2014 16:24:38 +0100
parents 7fff0ef86149
children a62549482602
files src/gpu/ptx/vm/gpu_ptx.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gpu/ptx/vm/gpu_ptx.cpp	Fri Jan 31 16:06:49 2014 +0100
+++ b/src/gpu/ptx/vm/gpu_ptx.cpp	Fri Jan 31 16:24:38 2014 +0100
@@ -630,7 +630,7 @@
     if (obj != NULL) {
       char type[256];
       obj->klass()->name()->as_C_string(type, 256);
-      _st->print("oop "PTR_FORMAT" (%s)", obj, type);
+      _st->print("oop "PTR_FORMAT" (%s)", (address) obj, type);
     } else {
       _st->print("oop null");
     }