We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8174190 commit 580ac6aCopy full SHA for 580ac6a
tiledb/sm/filesystem/posix.cc
@@ -290,12 +290,12 @@ void Posix::read(
290
}
291
if (offset > static_cast<uint64_t>(std::numeric_limits<off_t>::max())) {
292
throw IOError(
293
- std::string("Cannot read from file ' ") + path.c_str() +
+ std::string("Cannot read from file '") + path.c_str() +
294
"'; offset > typemax(off_t)");
295
296
if (nbytes > SSIZE_MAX) {
297
298
- std::string("Cannot read from file ' ") + path +
+ std::string("Cannot read from file '") + path +
299
"'; nbytes > SSIZE_MAX");
300
301
throw_if_not_ok(read_all(fd, buffer, nbytes, offset));
0 commit comments