ObjFW  Diff

Differences From Artifact [9862940d46]:

To Artifact [659d063c26]:


20
21
22
23
24
25
26
27
28


29
30
31
32



33
34

35
36
20
21
22
23
24
25
26


27
28
29



30
31
32
33

34
35
36







-
-
+
+

-
-
-
+
+
+

-
+


#import "OFString.h"

#import "common.h"

@implementation OFWriteFailedException
- (OFString*)description
{
	if (description != nil)
		return description;
	if (_description != nil)
		return _description;

	description = [[OFString alloc] initWithFormat:
	    @"Failed to write %zu bytes in class %@! " ERRFMT, requestedLength,
	    inClass, ERRPARAM];
	_description = [[OFString alloc] initWithFormat:
	    @"Failed to write %zu bytes in class %@! " ERRFMT, _requestedLength,
	    _inClass, ERRPARAM];

	return description;
	return _description;
}
@end