From aa2676824259ce13b07efad397ea379e45fd0cf6 Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Mon, 11 Nov 2002 10:28:44 +0000 Subject: Warning fixes. --- sys/dev/fb/splash_pcx.c | 7 ++++--- sys/modules/splash/pcx/splash_pcx.c | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sys/dev/fb/splash_pcx.c b/sys/dev/fb/splash_pcx.c index 544e8c795785..04dea6481bef 100644 --- a/sys/dev/fb/splash_pcx.c +++ b/sys/dev/fb/splash_pcx.c @@ -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; diff --git a/sys/modules/splash/pcx/splash_pcx.c b/sys/modules/splash/pcx/splash_pcx.c index 544e8c795785..04dea6481bef 100644 --- a/sys/modules/splash/pcx/splash_pcx.c +++ b/sys/modules/splash/pcx/splash_pcx.c @@ -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; -- cgit v1.2.3