Fixed more build warnings

This commit is contained in:
Pierre-Olivier Latour
2014-03-27 11:37:53 -07:00
parent e911472f28
commit 120f6fc864
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -506,7 +506,7 @@ static dispatch_queue_t _formatterQueue = NULL;
}
- (GCDWebServerResponse*)processRequest:(GCDWebServerRequest*)request withBlock:(GCDWebServerProcessBlock)block {
LOG_DEBUG(@"Connection on socket %i processing %@ request for \"%@\" (%lu bytes body)", _socket, _request.method, _request.path, _request.contentLength);
LOG_DEBUG(@"Connection on socket %i processing %@ request for \"%@\" (%lu bytes body)", _socket, _request.method, _request.path, (unsigned long)_request.contentLength);
GCDWebServerResponse* response = nil;
@try {
response = block(request);