Fix Mac build bustage - capitalization of variable name was incorrect

git-svn-id: svn://10.0.0.236/trunk@97535 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pollmann%netscape.com
2001-06-20 02:42:29 +00:00
parent 7262ef5035
commit a4824864a5

View File

@@ -1302,7 +1302,7 @@ nsFormFrame::GetFileNameWithinPath(nsString aPathName)
// so we have to avoid the test for '\'. We can't use
// PR_DIRECTORY_SEPARATOR_STR (even though ':' is a dir sep for MacOS)
// because this is set to '/' for reasons unknown to this coder.
PRInt32 fileNameStart = aPathname.RFind(":");
PRInt32 fileNameStart = aPathName.RFind(":");
#else
PRInt32 fileNameStart = aPathName.RFind(PR_DIRECTORY_SEPARATOR_STR);
#endif