mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00: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:
parent
5aa437baae
commit
5ba7390c3c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue