Browse Source

fs_openat.hpp

toml4
Antonio SJ Musumeci 9 months ago
parent
commit
ee6831e16a
  1. 2
      src/fs_openat.hpp

2
src/fs_openat.hpp

@ -49,7 +49,7 @@ namespace fs
{ {
int rv; int rv;
rv = ::openat(dirfd_,pathname_,flags_);
rv = ::openat(dirfd_,pathname_,flags_,mode_);
return ((rv == -1) ? -errno : rv); return ((rv == -1) ? -errno : rv);
} }

Loading…
Cancel
Save