From 0237551b8f9bfd1ecdb4ca3d2f8c701c18abcb41 Mon Sep 17 00:00:00 2001 From: Christopher Bowns Date: Fri, 27 Apr 2012 12:14:38 -0700 Subject: [PATCH] Remove spaces to match code style --- SDWebImageDecoder.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDWebImageDecoder.m b/SDWebImageDecoder.m index 2e9cdc9..d6db0b9 100644 --- a/SDWebImageDecoder.m +++ b/SDWebImageDecoder.m @@ -111,7 +111,7 @@ static SDWebImageDecoder *sharedInstance; CGColorSpaceRelease(colorSpace); if (!context) return nil; - CGRect rect = (CGRect){CGPointZero, { CGImageGetWidth(imageRef), CGImageGetHeight(imageRef) } }; + CGRect rect = (CGRect){CGPointZero,{CGImageGetWidth(imageRef), CGImageGetHeight(imageRef)}}; CGContextDrawImage(context, rect, imageRef); CGImageRef decompressedImageRef = CGBitmapContextCreateImage(context); CGContextRelease(context);