Fix assignment in the initializer of attribute selector

This commit is contained in:
iska
2015-12-22 02:31:45 +01:00
parent be34a57e6f
commit c4a5aa1bd9
+1 -1
View File
@@ -41,7 +41,7 @@
{
self = [super init];
if (self) {
self.type = type;
_type = type;
_name = [name copy];
_value = value ? [value copy]: @"";
}