ObjFW  Diff

Differences From Artifact [bb65a0cbbe]:

To Artifact [befdc7b2dc]:


50
51
52
53
54
55
56
57
58
59
60
61
62
}

- (OFString *)description
{
	if (_lock != nil)
		return [OFString stringWithFormat:
		    @"Deallocation of a lock of type %@ even though it was "
		    @"still locked!", _lock.class];
	else
		return @"Deallocation of a lock even though it was still "
		    @"locked!";
}
@end







|





50
51
52
53
54
55
56
57
58
59
60
61
62
}

- (OFString *)description
{
	if (_lock != nil)
		return [OFString stringWithFormat:
		    @"Deallocation of a lock of type %@ even though it was "
		    @"still locked!", [_lock class]];
	else
		return @"Deallocation of a lock even though it was still "
		    @"locked!";
}
@end