diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c index e1746023b3..77a21fd8e8 100644 --- a/lib/skin_parser/skin_debug.c +++ b/lib/skin_parser/skin_debug.c @@ -43,7 +43,7 @@ static char* error_message; static inline struct skin_element* get_child(OFFSETTYPE(struct skin_element**) children, int child) { - if (children == NULL) + if ((void*)children == NULL) // Stupid type shenanigans return NULL; struct skin_element **kids = SKINOFFSETTOPTR(skin_buffer, children);