fix warning, comparison with NULL

This commit is contained in:
Riccardo Mottola 2023-09-13 01:11:48 +02:00
parent 88a0e1e390
commit 5e68ebec91

View file

@ -48,7 +48,7 @@
{
NSError *error = nil;
NSAssert(completionHandler != nil, NSInvalidArgumentException);
NSAssert(completionHandler != NULL, NSInvalidArgumentException);
CALL_NON_NULL_BLOCK(completionHandler, error);
}