Skip to content

Commit

Permalink
Fixed a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic Jean committed Oct 19, 2010
1 parent a40421c commit b1aeb86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MBProgressHUD.m
Expand Up @@ -240,7 +240,7 @@ - (id)initWithView:(UIView *)view {
}

- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
if ((self = [super initWithFrame:frame])) {
// Set default values for properties
self.animationType = MBProgressHUDAnimationFade;
self.mode = MBProgressHUDModeIndeterminate;
Expand Down

0 comments on commit b1aeb86

Please sign in to comment.