small changes for code format

use_libfastcommon1.70
YuQing 2023-10-25 09:48:21 +08:00
parent 8363843597
commit cb73cfe1a5
1 changed files with 7 additions and 7 deletions

View File

@ -332,7 +332,7 @@ int dio_read_file(struct fast_task_info *pTask)
remain_bytes = pFileContext->end - pFileContext->offset; remain_bytes = pFileContext->end - pFileContext->offset;
capacity_bytes = pTask->send.ptr->size - pTask->send.ptr->length; capacity_bytes = pTask->send.ptr->size - pTask->send.ptr->length;
read_bytes = (capacity_bytes < remain_bytes) ? \ read_bytes = (capacity_bytes < remain_bytes) ?
capacity_bytes : remain_bytes; capacity_bytes : remain_bytes;
/* /*
@ -340,8 +340,8 @@ int dio_read_file(struct fast_task_info *pTask)
read_bytes, pTask->send.ptr->length, pFileContext->offset); read_bytes, pTask->send.ptr->length, pFileContext->offset);
*/ */
if (fc_safe_read(pFileContext->fd, pTask->send.ptr->data + pTask->send.ptr->length, \ if (fc_safe_read(pFileContext->fd, pTask->send.ptr->data +
read_bytes) != read_bytes) pTask->send.ptr->length, read_bytes) != read_bytes)
{ {
result = errno != 0 ? errno : EIO; result = errno != 0 ? errno : EIO;
logError("file: "__FILE__", line: %d, " \ logError("file: "__FILE__", line: %d, " \
@ -364,8 +364,8 @@ int dio_read_file(struct fast_task_info *pTask)
if (pFileContext->calc_crc32) if (pFileContext->calc_crc32)
{ {
pFileContext->crc32 = CRC32_ex(pTask->send.ptr->data + pTask->send.ptr->length, pFileContext->crc32 = CRC32_ex(pTask->send.ptr->data + pTask->
read_bytes, pFileContext->crc32); send.ptr->length, read_bytes, pFileContext->crc32);
} }
pTask->send.ptr->length += read_bytes; pTask->send.ptr->length += read_bytes;
@ -486,8 +486,8 @@ int dio_write_file(struct fast_task_info *pTask)
} }
/* /*
logInfo("###dio fd: %d, write bytes: %d, pTask->length=%d, " logInfo("###dio fd: %d, write bytes: %d, task length: %d, "
"buff_offset=%d", pFileContext->fd, write_bytes, "buff_offset: %d", pFileContext->fd, write_bytes,
pTask->recv.ptr->length, pFileContext->buff_offset); pTask->recv.ptr->length, pFileContext->buff_offset);
*/ */