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.
Easily included in code, also easily loaded from
data files. */
const char *data;
char *data;
} gdFont;
/* Text functions take these. */

View file

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

View file

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

View file

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

View file

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

View file

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