Fix xlib build bustage from checkin for bug 79132.

This commit is contained in:
dbaron%fas.harvard.edu 2001-05-08 22:17:10 +00:00
parent 742b92e202
commit 4fe3b0e759

View File

@ -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])