Author: petdance
Date: Tue Aug  7 21:10:00 2007
New Revision: 20554

Modified:
   trunk/src/thread.c

Log:
Don't check on undefined values

Modified: trunk/src/thread.c
==============================================================================
--- trunk/src/thread.c  (original)
+++ trunk/src/thread.c  Tue Aug  7 21:10:00 2007
@@ -548,7 +548,7 @@
 PMC *
 pt_transfer_sub(Parrot_Interp d, Parrot_Interp s, PMC *sub)
 {
-#if THREAD_DEBUG
+#if defined THREAD_DEBUG && THREAD_DEBUG
     PIO_eprintf(s, "copying over subroutine [%Ss]\n",
         Parrot_full_sub_name(s, sub));
 #endif

Reply via email to