Oops. Fix silly error that gcc-4.3 complained about.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6792
This commit is contained in:
Julian Seward 2007-08-31 10:21:40 +00:00
parent 9648774382
commit 57b2c66277

View File

@ -37,7 +37,7 @@ typedef Stack<Foo9,Foo9> Foo10;
typedef Stack<Foo10,Foo10> Foo11;
typedef Stack<Foo11,Foo11> Foo12;
int main ( char* argc, char** argv )
int main ( int argc, char** argv )
{
Stack<Foo12,Foo12> * x = new Stack<Foo12,Foo12>(3);
if (x == NULL)