1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Warning fix.

This commit is contained in:
Maxime Henrion 2002-11-11 10:17:01 +00:00
parent f47a35c909
commit 97be736aca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106765
2 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ static int splash_on = FALSE;
static int bmp_start(video_adapter_t *adp);
static int bmp_end(video_adapter_t *adp);
static int bmp_splash(video_adapter_t *adp, int on);
static int bmp_Init(const char *data, int swidth, int sheight, int sdepth);
static int bmp_Init(char *data, int swidth, int sheight, int sdepth);
static int bmp_Draw(video_adapter_t *adp);
static splash_decoder_t bmp_decoder = {
@ -509,7 +509,7 @@ bmp_DecodeLine(BMP_INFO *info, int line)
** can work with these.
*/
static int
bmp_Init(const char *data, int swidth, int sheight, int sdepth)
bmp_Init(char *data, int swidth, int sheight, int sdepth)
{
BITMAPF *bmf = (BITMAPF *)data;
int pind;

View File

@ -50,7 +50,7 @@ static int splash_on = FALSE;
static int bmp_start(video_adapter_t *adp);
static int bmp_end(video_adapter_t *adp);
static int bmp_splash(video_adapter_t *adp, int on);
static int bmp_Init(const char *data, int swidth, int sheight, int sdepth);
static int bmp_Init(char *data, int swidth, int sheight, int sdepth);
static int bmp_Draw(video_adapter_t *adp);
static splash_decoder_t bmp_decoder = {
@ -509,7 +509,7 @@ bmp_DecodeLine(BMP_INFO *info, int line)
** can work with these.
*/
static int
bmp_Init(const char *data, int swidth, int sheight, int sdepth)
bmp_Init(char *data, int swidth, int sheight, int sdepth)
{
BITMAPF *bmf = (BITMAPF *)data;
int pind;