@@ -198,12 +198,12 @@ if (![line hasPrefix: @"HTTP/1.0 "] && ![line hasPrefix: @"HTTP/1.1 "]) @throw [OFInvalidServerReplyException newWithClass: isa]; - status = [[line substringFromIndex: 9 - toIndex: 12] decimalValue]; + status = (int)[[line substringFromIndex: 9 + toIndex: 12] decimalValue]; if (status != 200 && status != 301 && status != 302 && status != 303) @throw [OFHTTPRequestFailedException newWithClass: isa