trivial fix to get rid of warning from copy/paste error - was passing unused argument to printf

This commit is contained in:
jband%netscape.com 1999-10-19 08:00:29 +00:00
parent cd41cc8e0f
commit 021034bc23

View File

@ -342,7 +342,7 @@ xpctestEcho::PrintArgTypes(void)
if(NS_FAILED(cc->GetArgv(&argv)))
return NS_ERROR_FAILURE;
printf("argv types = [", (int)argc);
printf("argv types = [");
for(PRUint32 i = 0; i < argc; i++)
{