Fix compilation error introduced in commit 6406d8e526

This commit is contained in:
Oliver Eikemeier 2015-10-27 13:44:19 +01:00
parent 8dcc5b5ae7
commit 92e38160d6
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@
NSInteger maxNumberOfImages = self.prefetchURLs.count;
dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, dispatch_get_global_queue(self.prefetcherQueue, 0), ^(size_t index) {
dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, self.prefetcherQueue, ^(size_t index) {
size_t i = index * self.maxConcurrentDownloads;
size_t stop = i + self.maxConcurrentDownloads;
do {