Fix compilation error introduced in commit 6406d8e5
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -125,7 +125,7 @@ | @@ -125,7 +125,7 @@ | ||
125 | 125 | ||
126 | NSInteger maxNumberOfImages = self.prefetchURLs.count; | 126 | NSInteger maxNumberOfImages = self.prefetchURLs.count; |
127 | 127 | ||
128 | - dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, dispatch_get_global_queue(self.prefetcherQueue, 0), ^(size_t index) { | 128 | + dispatch_apply(maxNumberOfImages/self.maxConcurrentDownloads, self.prefetcherQueue, ^(size_t index) { |
129 | size_t i = index * self.maxConcurrentDownloads; | 129 | size_t i = index * self.maxConcurrentDownloads; |
130 | size_t stop = i + self.maxConcurrentDownloads; | 130 | size_t stop = i + self.maxConcurrentDownloads; |
131 | do { | 131 | do { |
-
Please register or login to post a comment