ObjFW  Diff

Differences From Artifact [917c5fce63]:

To Artifact [5ebc5106e3]:


49
50
51
52
53
54
55
56

57
58
59
60
49
50
51
52
53
54
55

56
57
58
59
60







-
+




	[super dealloc];
}

- (OFString *)description
{
	if (_lock != nil)
		return [OFString stringWithFormat:
		    @"A lock of type %@ could not be locked!", [_lock class]];
		    @"A lock of type %@ could not be locked!", _lock.class];
	else
		return @"A lock could not be locked!";
}
@end