fix
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
Scott E. Graves 2024-07-27 08:28:23 -05:00
parent 681a3eec53
commit 26667fdcd6

View File

@ -885,8 +885,9 @@ public:
DECODE_OR_RETURN(request, handle); DECODE_OR_RETURN(request, handle);
data_buffer buffer; data_buffer buffer;
if ((ret = this->fuse_read(path.c_str(), &buffer, read_size, if ((ret = this->fuse_read(path.c_str(),
read_offset, handle)) > 0) { reinterpret_cast<char *>(&buffer),
read_size, read_offset, handle)) > 0) {
response.encode(buffer.data(), buffer.size()); response.encode(buffer.data(), buffer.size());
} }
return ret; return ret;