Skip to content

Commit

Permalink
fix CWBlockQueue to use new uuid string
Browse files Browse the repository at this point in the history
  • Loading branch information
Machx committed Mar 31, 2013
1 parent bab6db5 commit a326a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CWBlockQueue.m
Expand Up @@ -148,7 +148,7 @@ +(CWBlockQueue *)globalDefaultQueue {
}

+(void)executeBlockOnTemporaryQueue:(dispatch_block_t)block {
const char *label = CWUUIDCStringPrependedWithString(@"com.Zangetsu.CWBlockQueue_TemporaryQueue_");
const char *label = [CWUUIDStringPrependedWithString(@"com.Zangetsu.CWBlockQueue_TemporaryQueue_") UTF8String];
dispatch_queue_t tempQueue = dispatch_queue_create(label, DISPATCH_QUEUE_SERIAL);
dispatch_async(tempQueue, block);
dispatch_release(tempQueue);
Expand Down

0 comments on commit a326a13

Please sign in to comment.