fix compiler warnings introduced in my previous commit

This commit is contained in:
Nuno Lopes 2006-09-16 19:07:46 +00:00
parent 9f217cd983
commit d43c9c11f4
6 changed files with 6 additions and 6 deletions

View file

@ -193,7 +193,7 @@ typedef struct {
/* Font data; array of characters, one row after another. /* Font data; array of characters, one row after another.
Easily included in code, also easily loaded from Easily included in code, also easily loaded from
data files. */ data files. */
const char *data; char *data;
} gdFont; } gdFont;
/* Text functions take these. */ /* Text functions take these. */

View file

@ -4376,7 +4376,7 @@ gdFont gdFontGiantRep =
0, 0,
9, 9,
15, 15,
gdFontGiantData (char*)gdFontGiantData
}; };
gdFontPtr gdFontGiant = &gdFontGiantRep; gdFontPtr gdFontGiant = &gdFontGiantRep;

View file

@ -4633,7 +4633,7 @@ gdFont gdFontLargeRep =
0, 0,
8, 8,
16, 16,
gdFontLargeData (char*)gdFontLargeData
}; };
gdFontPtr gdFontLarge = &gdFontLargeRep; gdFontPtr gdFontLarge = &gdFontLargeRep;

View file

@ -3863,7 +3863,7 @@ gdFont gdFontMediumBoldRep =
0, 0,
7, 7,
13, 13,
gdFontMediumBoldData (char*)gdFontMediumBoldData
}; };
gdFontPtr gdFontMediumBold = &gdFontMediumBoldRep; gdFontPtr gdFontMediumBold = &gdFontMediumBoldRep;

View file

@ -3863,7 +3863,7 @@ gdFont gdFontSmallRep =
0, 0,
6, 6,
13, 13,
gdFontSmallData (char*)gdFontSmallData
}; };
gdFontPtr gdFontSmall = &gdFontSmallRep; gdFontPtr gdFontSmall = &gdFontSmallRep;

View file

@ -2584,7 +2584,7 @@ gdFont gdFontTinyRep =
0, 0,
5, 5,
8, 8,
gdFontTinyData (char*)gdFontTinyData
}; };
gdFontPtr gdFontTiny = &gdFontTinyRep; gdFontPtr gdFontTiny = &gdFontTinyRep;