still trying to fix solaris

git-svn-id: svn://10.0.0.236/trunk@71870 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blizzard%redhat.com 2000-06-09 04:17:09 +00:00
parent f7944757df
commit 32faa59a77

View File

@ -254,7 +254,7 @@ nsGtkMozRemoteHelper::ParseCommand(const char *aCommand, char **aResponse)
*end_command = '\0';
// get the action type
actionString.Append(origString, (begin_command - origString));
actionString.Append(origString, (begin_command - (char *)origString));
// figure out how long the command is
commandLen = (end_command - begin_command) - 1;
@ -546,7 +546,7 @@ nsGtkMozRemoteHelper::OpenURL (const char *aURL, PRBool aNewWindow)
if (tempString)
navChromeURL = tempString;
// default to this
if (!navChromeURL)
if (!(char *)navChromeURL)
navChromeURL = "chrome://navigator/content/navigator.xul";
newURL.AssignWithConversion(aURL);