Bug 1249389 - followup - fix compilation bustage in gfxFT2FontList.cpp; r=me

This commit is contained in:
Nathan Froyd 2016-02-24 15:48:35 -05:00
parent dd4d216fca
commit 1d0a3cc8f3

View File

@ -672,9 +672,9 @@ public:
return;
}
LOG(("got: %s from the cache", nsDependentCString(buf, size).get()));
LOG(("got: %s from the cache", nsDependentCString(buf.get(), size).get()));
const char* beginning = buf;
const char* beginning = buf.get();
const char* end = strchr(beginning, ';');
while (end) {
nsCString filename(beginning, end - beginning);