mirror of
https://xff.cz/git/u-boot/
synced 2025-09-21 02:22:18 +02:00
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 <agust@denx.de>
This commit is contained in:
committed by
Wolfgang Denk
parent
5aa437baae
commit
5ba7390c3c
@@ -85,7 +85,7 @@ static bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
|
|||||||
return bmp;
|
return bmp;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static bmp_image_t *gunzip_bmp(unsigned long addr)
|
static bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user