ObjFW  Diff

Differences From Artifact [c9a1338f9d]:

To Artifact [0346f15b9f]:


50
51
52
53
54
55
56
57
58
59
60
61
	[super dealloc];
}

- (OFString *)description
{
	if (_thread != nil)
		return [OFString stringWithFormat:
		    @"Starting a thread of type %@ failed!", [_thread class]];
	else
		return @"Starting a thread failed!";
}
@end







|




50
51
52
53
54
55
56
57
58
59
60
61
	[super dealloc];
}

- (OFString *)description
{
	if (_thread != nil)
		return [OFString stringWithFormat:
		    @"Starting a thread of type %@ failed!", _thread.class];
	else
		return @"Starting a thread failed!";
}
@end