[svn:parrot] r45796 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Mon Apr 19 07:42:51 UTC 2010


Author: mikehh
Date: Mon Apr 19 07:42:50 2010
New Revision: 45796
URL: https://trac.parrot.org/parrot/changeset/45796

Log:
fix codetest failure - change function documentation to reflect consting

Modified:
   trunk/src/parrot_debugger.c

Modified: trunk/src/parrot_debugger.c
==============================================================================
--- trunk/src/parrot_debugger.c	Mon Apr 19 06:23:46 2010	(r45795)
+++ trunk/src/parrot_debugger.c	Mon Apr 19 07:42:50 2010	(r45796)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2001-2009, Parrot Foundation.
+Copyright (C) 2001-2010, Parrot Foundation.
 $Id$
 
 =head1 NAME
@@ -151,7 +151,7 @@
 
 /*
 
-=item C<int main(int argc, char *argv[])>
+=item C<int main(int argc, const char *argv[])>
 
 Reads the PIR, PASM or PBC file from argv[1], loads it, and then calls
 Parrot_debug().
@@ -271,7 +271,7 @@
 
 /*
 
-=item C<static void PDB_run_code(PARROT_INTERP, int argc, char *argv[])>
+=item C<static void PDB_run_code(PARROT_INTERP, int argc, const char *argv[])>
 
 Run the code, catching exceptions if they are left unhandled.
 


More information about the parrot-commits mailing list