ObjFW  Diff

Differences From Artifact [f5eb2bdfd8]:

To Artifact [cdcb8469af]:


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 unlocked!", [_lock class]];
		    @"A lock of type %@ could not be unlocked!", _lock.class];
	else
		return @"A lock could not be unlocked!";
}
@end