File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -141,12 +141,12 @@ - (void)socketDidSecure:(GCDAsyncSocket *)sock
141
141
142
142
- (void )socket : (GCDAsyncSocket *)sock didWriteDataWithTag : (long )tag
143
143
{
144
- DDLogInfo (@" socket:%p didWriteDataWithTag:%d " , sock, tag);
144
+ DDLogInfo (@" socket:%p didWriteDataWithTag:%ld " , sock, tag);
145
145
}
146
146
147
147
- (void )socket : (GCDAsyncSocket *)sock didReadData : (NSData *)data withTag : (long )tag
148
148
{
149
- DDLogInfo (@" socket:%p didReadData:withTag:%d " , sock, tag);
149
+ DDLogInfo (@" socket:%p didReadData:withTag:%ld " , sock, tag);
150
150
}
151
151
152
152
- (void )socketDidDisconnect : (GCDAsyncSocket *)sock withError : (NSError *)err
Original file line number Diff line number Diff line change @@ -232,12 +232,12 @@ - (void)socketDidSecure:(GCDAsyncSocket *)sock
232
232
233
233
- (void )socket : (GCDAsyncSocket *)sock didWriteDataWithTag : (long )tag
234
234
{
235
- DDLogInfo (@" socket:%p didWriteDataWithTag:%d " , sock, tag);
235
+ DDLogInfo (@" socket:%p didWriteDataWithTag:%ld " , sock, tag);
236
236
}
237
237
238
238
- (void )socket : (GCDAsyncSocket *)sock didReadData : (NSData *)data withTag : (long )tag
239
239
{
240
- DDLogInfo (@" socket:%p didReadData:withTag:%d " , sock, tag);
240
+ DDLogInfo (@" socket:%p didReadData:withTag:%ld " , sock, tag);
241
241
242
242
NSString *httpResponse = [[NSString alloc ] initWithData: data encoding: NSUTF8StringEncoding];
243
243
You can’t perform that action at this time.
0 commit comments