From e6cf241648682cc726d2e8a175cb8341019778ee Mon Sep 17 00:00:00 2001 From: Garrett Moon Date: Mon, 11 Apr 2016 15:26:25 -0700 Subject: [PATCH] Fix warning, passing in NULL instead of 0 --- Pod/Classes/PINAnimatedImageManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pod/Classes/PINAnimatedImageManager.m b/Pod/Classes/PINAnimatedImageManager.m index 65425d0..33cf701 100644 --- a/Pod/Classes/PINAnimatedImageManager.m +++ b/Pod/Classes/PINAnimatedImageManager.m @@ -46,7 +46,7 @@ static dispatch_once_t startupCleanupOnce; + (void)load { if (self == [PINAnimatedImageManager class]) { - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, NULL), ^{ + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ dispatch_once(&startupCleanupOnce, ^{ [self cleanupFiles]; });