Remove more lint.

Change-Id: I48714db4169d9ea0536342809361210910ee2091
diff --git a/src/trace.cc b/src/trace.cc
index 83f50d3..ee97ee1 100644
--- a/src/trace.cc
+++ b/src/trace.cc
@@ -393,7 +393,7 @@
   for (It it = visited_methods_.begin(); it != visited_methods_.end(); ++it) {
     const Method* method = *it;
     MethodHelper mh(method);
-    os << StringPrintf("0x%08x\t%s\t%s\t%s\t%s\t%d\n", (int) method,
+    os << StringPrintf("%p\t%s\t%s\t%s\t%s\t%d\n", method,
         PrettyDescriptor(mh.GetDeclaringClassDescriptor()).c_str(), mh.GetName(),
         mh.GetSignature().c_str(), mh.GetDeclaringClassSourceFile(),
         mh.GetLineNumFromNativePC(0));