Bug 869836 - Part 3: Use Append('c') instead of AppendLiteral("c"). r=ehsan

This commit is contained in:
Birunthan Mohanathas
2014-05-22 06:48:51 +03:00
parent 1ebdb921a5
commit 9f41043f62
80 changed files with 167 additions and 167 deletions

View File

@@ -194,7 +194,7 @@ nsOfflineCacheEvictionFunction::OnFunctionCall(mozIStorageValueArray *values, ns
const char *clientID = values->AsSharedUTF8String(0, &valueLen);
const char *key = values->AsSharedUTF8String(1, &valueLen);
nsAutoCString fullKey(clientID);
fullKey.AppendLiteral(":");
fullKey.Append(':');
fullKey.Append(key);
int generation = values->AsInt32(2);