Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit c6093cf

Browse files
committed
Fix assertion format specifier from previous commit.
1 parent 6a887a8 commit c6093cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

AsyncDisplayKit/ASDisplayNode.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ - (void)dealloc
338338
{
339339
ASDisplayNodeAssertMainThread();
340340
// Synchronous nodes may not be able to call the hierarchy notifications, so only enforce for regular nodes.
341-
ASDisplayNodeAssert(_flags.synchronous || !ASInterfaceStateIncludesVisible(_interfaceState), @"Node should always be marked invisible before deallocating; interfaceState: %d, %@", _interfaceState, self);
341+
ASDisplayNodeAssert(_flags.synchronous || !ASInterfaceStateIncludesVisible(_interfaceState), @"Node should always be marked invisible before deallocating; interfaceState: %lu, %@", (unsigned long)_interfaceState, self);
342342

343343
self.asyncLayer.asyncDelegate = nil;
344344
_view.asyncdisplaykit_node = nil;

0 commit comments

Comments
 (0)