diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-05-24 11:34:07 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-05-24 11:34:43 -0400 |
commit | 5dd9238004b9a0e90067537b2c58fe4baebf88a6 (patch) | |
tree | 1750c6ed7e3cbf131480358400a5f63dbbcb270f | |
parent | 8825b330529a1cc1a74bb0b4f6880fbdd4333b22 (diff) | |
download | rockbox-5dd9238004.tar.gz rockbox-5dd9238004.zip |
Fix yellow in sim builds
Change-Id: Ibed5ca7a821a31128940d602ade75497c13631f5
-rw-r--r-- | lib/skin_parser/skin_debug.c | 2 |
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; 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); |