diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2012-03-15 23:26:07 +1100 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-03-15 23:26:07 +1100 |
| commit | 5edae54e0d11e810040380aace455af7ec7c8d08 (patch) | |
| tree | 069ff654d79817ea14ad249d6995e2cad8e71374 /lib/skin_parser/skin_debug.c | |
| parent | 182a6c80ba4418f0244a28c932a2b36c61defd0b (diff) | |
| download | rockbox-5edae54e0d11e810040380aace455af7ec7c8d08.zip rockbox-5edae54e0d11e810040380aace455af7ec7c8d08.tar.gz rockbox-5edae54e0d11e810040380aace455af7ec7c8d08.tar.bz2 rockbox-5edae54e0d11e810040380aace455af7ec7c8d08.tar.xz | |
skin_engine: Reenable skin debugging in the sim (use --debugwps)
Change-Id: I2881edda45cd3ea69f5284d93bc93c47bb63b3f2
Diffstat (limited to 'lib/skin_parser/skin_debug.c')
| -rw-r--r-- | lib/skin_parser/skin_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c index ecf238f..9537182 100644 --- a/lib/skin_parser/skin_debug.c +++ b/lib/skin_parser/skin_debug.c @@ -283,7 +283,7 @@ void skin_debug_params(int count, struct skin_tag_parameter params[]) } } -void skin_debug_indent() +void skin_debug_indent(void) { int i; for(i = 0; i < debug_indent_level; i++) @@ -293,7 +293,7 @@ void skin_debug_indent() #endif #define MIN(a,b) ((a<b)?(a):(b)) -void skin_error_format_message() +void skin_error_format_message(void) { int i; char text[128]; |