From: Anatolij Gustschin Date: Fri, 11 Jan 2008 01:15:02 +0000 (+0100) Subject: Fix compilation problem in common/cmd_bmp.c X-Git-Tag: v1.3.2-rc1~102^2~21 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5ba7390c3cb579172be66888a371707b47b5be4e;p=u-boot Fix compilation problem in common/cmd_bmp.c common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP isn't defined. This patch fix this. Signed-off-by: Anatolij Gustschin --- diff --git a/common/cmd_bmp.c b/common/cmd_bmp.c index 2437e22780..197e5e871d 100644 --- a/common/cmd_bmp.c +++ b/common/cmd_bmp.c @@ -85,7 +85,7 @@ static bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp) return bmp; } #else -static bmp_image_t *gunzip_bmp(unsigned long addr) +static bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp) { return NULL; }