Bug 833066: Declare loop variable in gfxFT2FontList.cpp as 'size_t' instead of 'int', to fix signed/unsigned warnings. r=blassey a=nonlibxul (#ifdef-android code)

This commit is contained in:
Daniel Holbert 2013-01-22 00:04:39 -08:00
parent 13eb74e781
commit ccd07c99a7

View File

@ -935,7 +935,7 @@ void ExtractFontsFromJar(nsIFile* aLocalDir)
"res/fonts/*.ttf$",
};
for (int i = 0; i < ArrayLength(sJarSearchPaths); i++) {
for (size_t i = 0; i < ArrayLength(sJarSearchPaths); i++) {
reader->FindInit(sJarSearchPaths[i], &find);
while (true) {
const char* tmpPath;