diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-11-12 21:21:23 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-11-12 21:21:23 +0000 |
| commit | 6c8267a42cffd711dcd4230415f7e0ab15b855b3 (patch) | |
| tree | e33746260752988f0d8aca0b36c9660857662df1 | |
| parent | 28774873cf49047eeeafe4cdb59c2c7abc0f47b7 (diff) | |
| download | rockbox-6c8267a42cffd711dcd4230415f7e0ab15b855b3.zip rockbox-6c8267a42cffd711dcd4230415f7e0ab15b855b3.tar.gz rockbox-6c8267a42cffd711dcd4230415f7e0ab15b855b3.tar.bz2 rockbox-6c8267a42cffd711dcd4230415f7e0ab15b855b3.tar.xz | |
Android: Fix compilation failure
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28566 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/skin_engine/skin_parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c index 2aa0f66..c94ef4e 100644 --- a/apps/gui/skin_engine/skin_parser.c +++ b/apps/gui/skin_engine/skin_parser.c @@ -1124,8 +1124,10 @@ static bool load_skin_bmp(struct wps_data *wps_data, struct bitmap *bitmap, char char* imgbuf = (char*)skin_buffer_alloc(buf_size); if (!imgbuf) { +#ifndef APPLICATION DEBUGF("Not enough skin buffer: need %zd more.\n", buf_size - skin_buffer_freespace()); +#endif close(fd); return NULL; } |