[svn:parrot] r36760 - trunk/include/parrot

barney at svn.parrot.org barney at svn.parrot.org
Sun Feb 15 13:49:38 UTC 2009


Author: barney
Date: Sun Feb 15 13:49:36 2009
New Revision: 36760
URL: https://trac.parrot.org/parrot/changeset/36760

Log:
[codingstd] satisfy c_macro_args.t

Modified:
   trunk/include/parrot/packfile.h

Modified: trunk/include/parrot/packfile.h
==============================================================================
--- trunk/include/parrot/packfile.h	Sun Feb 15 13:32:14 2009	(r36759)
+++ trunk/include/parrot/packfile.h	Sun Feb 15 13:49:36 2009	(r36760)
@@ -42,9 +42,9 @@
 
 #if TRACE_PACKFILE
 /* Here we pass multipe args to a macro so the args may not be bracketed here! */
-#  define TRACE_PRINTF(args)       if (pf->options) Parrot_trace_eprintf args
+#  define TRACE_PRINTF(args)       if (pf->options) Parrot_trace_eprintf (args)
 #  if TRACE_PACKFILE == 2
-#    define TRACE_PRINTF_VAL(args) if (pf->options & 2) Parrot_trace_eprintf args
+#    define TRACE_PRINTF_VAL(args) if (pf->options & 2) Parrot_trace_eprintf (args)
 #  else
 #    define TRACE_PRINTF_VAL(args)
 #  endif


More information about the parrot-commits mailing list