Fix warning, passing in NULL instead of 0

This commit is contained in:
Garrett Moon
2016-04-11 15:26:25 -07:00
parent a0c421e50f
commit e6cf241648

View File

@@ -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];
});