Skip to content

Commit 6e15ad6

Browse files
committed
fix
1 parent 96dda7e commit 6e15ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ucm/store/nfsstore/cc/domain/trans/directstorage_queue.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Status DirectStorageQueue::S2D(Task::Shard& shard, const Device& device) {
8989
[&path](int& newFd) -> Status {
9090
newFd = open(path.c_str(), O_RDONLY | O_DIRECT, 0644);
9191
if (newFd < 0) {
92-
UC_ERROR("Failed to open file {} for reading: {}", path, strerror(errno));
92+
UC_ERROR("Failed to open file {} for read: {}", path, strerror(errno));
9393
return Status::Error();
9494
}
9595
return Status::OK();

0 commit comments

Comments
 (0)