summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-05-24 11:34:07 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-05-24 11:34:43 -0400
commit5dd9238004b9a0e90067537b2c58fe4baebf88a6 (patch)
tree1750c6ed7e3cbf131480358400a5f63dbbcb270f
parent8825b330529a1cc1a74bb0b4f6880fbdd4333b22 (diff)
downloadrockbox-5dd9238004b9a0e90067537b2c58fe4baebf88a6.tar.gz
rockbox-5dd9238004b9a0e90067537b2c58fe4baebf88a6.zip
Fix yellow in sim builds
Change-Id: Ibed5ca7a821a31128940d602ade75497c13631f5
-rw-r--r--lib/skin_parser/skin_debug.c2
1 files changed, 1 insertions, 1 deletions
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;
43static inline struct skin_element* 43static inline struct skin_element*
44get_child(OFFSETTYPE(struct skin_element**) children, int child) 44get_child(OFFSETTYPE(struct skin_element**) children, int child)
45{ 45{
46 if (children == NULL) 46 if ((void*)children == NULL) // Stupid type shenanigans
47 return NULL; 47 return NULL;
48 48
49 struct skin_element **kids = SKINOFFSETTOPTR(skin_buffer, children); 49 struct skin_element **kids = SKINOFFSETTOPTR(skin_buffer, children);