diff options
Diffstat (limited to 'test/util/mount_util.h')
-rw-r--r-- | test/util/mount_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util/mount_util.h b/test/util/mount_util.h index 484de560e..51119f22f 100644 --- a/test/util/mount_util.h +++ b/test/util/mount_util.h @@ -33,9 +33,9 @@ namespace testing { // destroyed. inline PosixErrorOr<Cleanup> Mount(const std::string &source, const std::string &target, - const std::string &fstype, uint64_t mountflags, + const std::string &fstype, uint64 mountflags, const std::string &data, - uint64_t umountflags) { + uint64 umountflags) { if (mount(source.c_str(), target.c_str(), fstype.c_str(), mountflags, data.c_str()) == -1) { return PosixError(errno, "mount failed"); |