aboutsummaryrefslogtreecommitdiff
path: root/src/posix_extras.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix_extras.cc')
-rw-r--r--src/posix_extras.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/posix_extras.cc b/src/posix_extras.cc
index d06dc41..c3c841c 100644
--- a/src/posix_extras.cc
+++ b/src/posix_extras.cc
@@ -50,7 +50,7 @@ std::string IoError::Message(const int number) noexcept {
File::File(const char* const path, const int flags) : path_(path) {
if ((fd_ = open(path, flags)) == -1) {
- throw IoError(errno);
+ throw IoError();
}
}
@@ -65,7 +65,7 @@ File::~File() noexcept {
struct stat File::Stat() const {
struct stat result;
if (fstat(fd_, &result) == -1) {
- throw IoError(errno);
+ throw IoError();
}
return result;
}
@@ -77,7 +77,7 @@ struct stat File::LinkStatAt(const char* const path) const {
struct stat result;
if (fstatat(fd_, path, &result, AT_SYMLINK_NOFOLLOW) == -1) {
- throw IoError(errno);
+ throw IoError();
}
return result;
}