oops, switch from char[] to char*

git-svn-id: svn://10.0.0.236/trunk@46731 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com
1999-09-10 07:18:06 +00:00
parent e290f0120b
commit a4178ec0e9
2 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ public:
NS_IMETHOD GetURLToLoad(char ** aResult);
NS_IMETHOD GetProgramName(char ** aResult);
NS_IMETHOD GetArgc(PRInt32 * aResult);
NS_IMETHOD GetArgv(char ** aResult[]);
NS_IMETHOD GetArgv(char *** aResult);
protected:
virtual ~nsCmdLineService();
@@ -230,7 +230,7 @@ nsCmdLineService::GetArgc(PRInt32 * aResult)
}
NS_IMETHODIMP
nsCmdLineService::GetArgv(char ** aResult[])
nsCmdLineService::GetArgv(char *** aResult)
{
if (nsnull == aResult)
return NS_ERROR_NULL_POINTER;