Cosmetic changes to remove warnings generated by Visual C++ compiler
Do not link with unneccessary library raptorgfx in makefile.win
Use JAVAHOME to point to JDK instead of hardcoding the path


git-svn-id: svn://10.0.0.236/trunk@52553 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akhil.arora%sun.com
1999-11-02 18:52:14 +00:00
parent 5b541fa64b
commit 1c67d02237
4 changed files with 6 additions and 8 deletions

View File

@@ -640,7 +640,7 @@ static char* strip_whitespace(const PRUnichar* input, int length)
if ((pc == ' ' || pc == '\n' || pc == '\t') &&
(c == ' ' || c == '\n' || c == '\t'))
continue;
*op++ = c;
*op++ = (char)c;
pc = c;
}
*op++ = 0;