[svn:parrot] r45792 - trunk/t/src
petdance at svn.parrot.org
petdance at svn.parrot.org
Mon Apr 19 05:49:04 UTC 2010
Author: petdance
Date: Mon Apr 19 05:49:04 2010
New Revision: 45792
URL: https://trac.parrot.org/parrot/changeset/45792
Log:
fix decaration of argv
Modified:
trunk/t/src/warnings.t
Modified: trunk/t/src/warnings.t
==============================================================================
--- trunk/t/src/warnings.t Mon Apr 19 05:45:56 2010 (r45791)
+++ trunk/t/src/warnings.t Mon Apr 19 05:49:04 2010 (r45792)
@@ -1,5 +1,5 @@
#! perl
-# Copyright (C) 2001-2006, Parrot Foundation.
+# Copyright (C) 2001-2010, Parrot Foundation.
# $Id$
use strict;
@@ -34,7 +34,7 @@
#include <parrot/embed.h>
int
-main(int argc, char* argv[])
+main(int argc, const char* argv[])
{
Parrot_Interp interp = Parrot_new(NULL);
int error_val;
@@ -57,7 +57,7 @@
#include <parrot/embed.h>
int
-main(int argc, char* argv[])
+main(int argc, const char* argv[])
{
Parrot_Interp interp = Parrot_new(NULL);
int error_val;
More information about the parrot-commits
mailing list