File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5377,7 +5377,7 @@ - (void)doWriteData
5377
5377
}
5378
5378
5379
5379
CFIndex result = CFWriteStreamWrite (writeStream, buffer, (CFIndex)bytesToWrite);
5380
- LogVerbose (@" CFWriteStreamWrite(%lu ) = %li " , bytesToWrite, result);
5380
+ LogVerbose (@" CFWriteStreamWrite(%lu ) = %li " , ( unsigned long ) bytesToWrite, result);
5381
5381
5382
5382
if (result < 0 )
5383
5383
{
@@ -5597,7 +5597,7 @@ - (void)doWriteData
5597
5597
{
5598
5598
// Update total amount read for the current write
5599
5599
currentWrite->bytesDone += bytesWritten;
5600
- LogVerbose (@" currentWrite->bytesDone = %lu " , currentWrite->bytesDone );
5600
+ LogVerbose (@" currentWrite->bytesDone = %lu " , ( unsigned long ) currentWrite->bytesDone );
5601
5601
5602
5602
// Is packet done?
5603
5603
done = (currentWrite->bytesDone == [currentWrite->buffer length ]);
You can’t perform that action at this time.
0 commit comments