1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Warning fixes.

This commit is contained in:
Maxime Henrion 2002-11-11 10:28:44 +00:00
parent 97be736aca
commit aa26768242
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106766
2 changed files with 8 additions and 6 deletions

View File

@ -47,7 +47,7 @@ static int splash_on = FALSE;
static int pcx_start(video_adapter_t *adp);
static int pcx_end(video_adapter_t *adp);
static int pcx_splash(video_adapter_t *adp, int on);
static int pcx_init(const char *data, int sdepth);
static int pcx_init(char *data, int sdepth);
static int pcx_draw(video_adapter_t *adp);
static splash_decoder_t pcx_decoder = {
@ -60,7 +60,8 @@ static struct
{
int width, height, bpsl;
int bpp, planes, zlen;
const u_char *zdata, *palette;
const u_char *zdata;
u_char *palette;
} pcx_info;
static int
@ -158,7 +159,7 @@ struct pcxheader {
#define MAXSCANLINE 1024
static int
pcx_init(const char *data, int size)
pcx_init(char *data, int size)
{
const struct pcxheader *hdr;

View File

@ -47,7 +47,7 @@ static int splash_on = FALSE;
static int pcx_start(video_adapter_t *adp);
static int pcx_end(video_adapter_t *adp);
static int pcx_splash(video_adapter_t *adp, int on);
static int pcx_init(const char *data, int sdepth);
static int pcx_init(char *data, int sdepth);
static int pcx_draw(video_adapter_t *adp);
static splash_decoder_t pcx_decoder = {
@ -60,7 +60,8 @@ static struct
{
int width, height, bpsl;
int bpp, planes, zlen;
const u_char *zdata, *palette;
const u_char *zdata;
u_char *palette;
} pcx_info;
static int
@ -158,7 +159,7 @@ struct pcxheader {
#define MAXSCANLINE 1024
static int
pcx_init(const char *data, int size)
pcx_init(char *data, int size)
{
const struct pcxheader *hdr;