Skip to content

Commit

Permalink
Fixing an issue that would cause EXC_BAD_ACCESS when property
Browse files Browse the repository at this point in the history
is not found.
  • Loading branch information
vojto committed Dec 29, 2011
1 parent eb4aaec commit 6756aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Categories/NSManagedObject+MagicalRecord.m
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ + (NSArray *) MR_propertiesNamed:(NSArray *)properties
}
else
{
MRLog(@"Property '%@' not found in %@ properties for %@", propertyName, [propDict count], NSStringFromClass(self));
MRLog(@"Property '%@' not found in %d properties for %@", propertyName, [propDict count], NSStringFromClass(self));
}
}
}
Expand Down

0 comments on commit 6756aef

Please sign in to comment.