making string conversions explicit
git-svn-id: svn://10.0.0.236/trunk@66097 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -517,7 +517,7 @@ nsLoggingSink::QuoteText(const nsString& aValue, nsString& aResult)
|
||||
}
|
||||
else if ((ch < 32) || (ch >= 127)) {
|
||||
aResult.AppendWithConversion("&#");
|
||||
aResult.AppendWithConversion(PRInt32(ch), 10);
|
||||
aResult.AppendInt(PRInt32(ch), 10);
|
||||
aResult.AppendWithConversion(';');
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user