summaryrefslogtreecommitdiff
path: root/lib/skin_parser/skin_debug.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2011-01-27 11:27:53 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2011-01-27 11:27:53 +0000
commit21e89e87865abdc7b61afcded42a2906b2f5fee7 (patch)
tree59e30c0a55593bcb31f76ca0f673dc365c98b113 /lib/skin_parser/skin_debug.c
parent166c8bf46fc2f30e131b81fe86ace00b6bdf7bd1 (diff)
downloadrockbox-21e89e87865abdc7b61afcded42a2906b2f5fee7.tar.gz
rockbox-21e89e87865abdc7b61afcded42a2906b2f5fee7.zip
Add some better debug info for when checkwps erros out because of full skin buffer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29144 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'lib/skin_parser/skin_debug.c')
-rw-r--r--lib/skin_parser/skin_debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c
index bcf43ab5e4..52f9127f1f 100644
--- a/lib/skin_parser/skin_debug.c
+++ b/lib/skin_parser/skin_debug.c
@@ -56,6 +56,8 @@ void skin_error(enum skin_errorcode error, const char* cursor)
56 switch(error) 56 switch(error)
57 { 57 {
58 case MEMORY_LIMIT_EXCEEDED: 58 case MEMORY_LIMIT_EXCEEDED:
59 error_line_start = NULL;
60 printf("Error: Memory limit exceeded at Line %d\n", skin_line);
59 error_message = "Memory limit exceeded"; 61 error_message = "Memory limit exceeded";
60 break; 62 break;
61 case NEWLINE_EXPECTED: 63 case NEWLINE_EXPECTED: