[svn:parrot] r40650 - trunk/src

NotFound at svn.parrot.org NotFound at svn.parrot.org
Wed Aug 19 07:45:39 UTC 2009


Author: NotFound
Date: Wed Aug 19 07:45:38 2009
New Revision: 40650
URL: https://trac.parrot.org/parrot/changeset/40650

Log:
[cage] don't use /* inside C comments

Modified:
   trunk/src/packfile.c

Modified: trunk/src/packfile.c
==============================================================================
--- trunk/src/packfile.c	Wed Aug 19 06:10:48 2009	(r40649)
+++ trunk/src/packfile.c	Wed Aug 19 07:45:38 2009	(r40650)
@@ -1005,8 +1005,9 @@
     /* Ensure the bytecode version is one we can read. Currently, we only
      * support bytecode versions matching the current one.
      *
-     * tools/dev/pbc_header.pl --upd t/native_pbc/*.pbc
-     * stamps version and fingerprint in the native tests. */
+     * tools/dev/pbc_header.pl --upd t/native_pbc/(ASTERISK).pbc
+     * stamps version and fingerprint in the native tests.
+     * NOTE: (ASTERISK) is *, we don't want to fool the C preprocessor. */
     if (header->bc_major != PARROT_PBC_MAJOR
     ||  header->bc_minor != PARROT_PBC_MINOR) {
         Parrot_io_eprintf(NULL, "PackFile_unpack: This Parrot cannot read "


More information about the parrot-commits mailing list