mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-28 05:10:49 +00:00
Fix xlib build bustage from checkin for bug 79132.
This commit is contained in:
parent
742b92e202
commit
4fe3b0e759
@ -517,7 +517,7 @@ FreeStretch(nsFontStretch* aStretch)
|
||||
static void
|
||||
FreeWeights(nsFontWeight* aWeight)
|
||||
{
|
||||
nsFontStretch* stretches=aWeight->mStretches;
|
||||
nsFontStretch** stretches=aWeight->mStretches;
|
||||
for (int i=0; i < 9; i++)
|
||||
{
|
||||
if (stretches[i])
|
||||
@ -536,7 +536,7 @@ FreeWeights(nsFontWeight* aWeight)
|
||||
static void
|
||||
FreeStyle(nsFontStyle* aStyle)
|
||||
{
|
||||
nsFontWeight* weights=aStyle->mWeights;
|
||||
nsFontWeight** weights=aStyle->mWeights;
|
||||
for (int i=0; i < 9; i++)
|
||||
{
|
||||
if (weights[i])
|
||||
|
Loading…
x
Reference in New Issue
Block a user