Skip to content
Snippets Groups Projects
Commit 5ba7390c authored by Anatolij Gustschin's avatar Anatolij Gustschin Committed by Wolfgang Denk
Browse files

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: default avatarAnatolij Gustschin <agust@denx.de>
parent 5aa437ba
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ static bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp) ...@@ -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;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment