summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c2
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 2aa0f66da0..c94ef4e5b5 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
1124 char* imgbuf = (char*)skin_buffer_alloc(buf_size); 1124 char* imgbuf = (char*)skin_buffer_alloc(buf_size);
1125 if (!imgbuf) 1125 if (!imgbuf)
1126 { 1126 {
1127#ifndef APPLICATION
1127 DEBUGF("Not enough skin buffer: need %zd more.\n", 1128 DEBUGF("Not enough skin buffer: need %zd more.\n",
1128 buf_size - skin_buffer_freespace()); 1129 buf_size - skin_buffer_freespace());
1130#endif
1129 close(fd); 1131 close(fd);
1130 return NULL; 1132 return NULL;
1131 } 1133 }