diff --git a/XMLRPCRequest.m b/XMLRPCRequest.m index 7297560..23a06d6 100644 --- a/XMLRPCRequest.m +++ b/XMLRPCRequest.m @@ -30,9 +30,9 @@ - (id)initWithURL: (NSURL *)URL withEncoder: (id)encoder { - (id)initWithURL: (NSURL *)URL { #if ! __has_feature(objc_arc) - return [self initWithURL:URL withEncoder: [[[XMLRPCDefaultEncoder alloc] init] autorelease]]; + return [self initWithURL: URL withEncoder: [[[XMLRPCDefaultEncoder alloc] init] autorelease]]; #else - return [self initWithURL:URL withEncoder: [[XMLRPCDefaultEncoder alloc] init]]; + return [self initWithURL: URL withEncoder: [[XMLRPCDefaultEncoder alloc] init]]; #endif }