diff src/share/vm/prims/jvmtiImpl.cpp @ 8721:47bc9800972c

8006498: #if <symbol> is wrong in the code. Summary: ASSERT and other symbols used incorrectly with #if are supposed to be defined or not. Reviewed-by: dholmes, mikael
author jprovino
date Wed, 06 Mar 2013 13:46:55 -0500
parents 8b46b0196eb0
children b9a918201d47 f2110083203d
line wrap: on
line diff
--- a/src/share/vm/prims/jvmtiImpl.cpp	Wed Mar 06 13:38:17 2013 -0500
+++ b/src/share/vm/prims/jvmtiImpl.cpp	Wed Mar 06 13:46:55 2013 -0500
@@ -890,7 +890,7 @@
 
   tty->print("Suspended Threads: [");
   for (JavaThread *thread = Threads::first(); thread != NULL; thread = thread->next()) {
-#if JVMTI_TRACE
+#ifdef JVMTI_TRACE
     const char *name   = JvmtiTrace::safe_get_thread_name(thread);
 #else
     const char *name   = "";