Skip to content

Commit d4e524c

Browse files
committed
correct type
1 parent 937daa4 commit d4e524c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/dataio.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ connect_remote(const std::string &path, float timeout)
121121

122122
class RemoteInputStreamBuffer : public std::streambuf {
123123
public:
124-
RemoteInputStreamBuffer(const std::string &path, int timeout, size_t size)
124+
RemoteInputStreamBuffer(const std::string &path, float timeout, size_t size)
125125
: buffer_(size), bytes_(0) {
126126
fd_ = connect_remote(path, timeout);
127127
setg(buffer_.data(), buffer_.data(), buffer_.data());

0 commit comments

Comments
 (0)