Skip to content

Commit

Permalink
Remove spaces to match code style
Browse files Browse the repository at this point in the history
  • Loading branch information
cbowns committed Apr 27, 2012
1 parent 89b8cf5 commit 0237551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SDWebImageDecoder.m
Expand Up @@ -111,7 +111,7 @@ + (UIImage *)decodedImageWithImage:(UIImage *)image
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);
Expand Down

0 comments on commit 0237551

Please sign in to comment.