1
1
mirror of https://github.com/rui314/mold.git synced 2024-08-16 08:20:23 +03:00
This commit is contained in:
Rui Ueyama 2024-07-09 15:25:51 +09:00
parent 02ca830f42
commit 315dfd3244

View File

@ -735,7 +735,7 @@ template <typename Context>
class OutputFile {
public:
static std::unique_ptr<OutputFile<Context>>
open(Context &ctx, std::string path, i64 filesize, i64 perm);
open(Context &ctx, std::string path, i64 filesize, int perm);
virtual void close(Context &ctx) = 0;
virtual ~OutputFile() = default;
@ -792,7 +792,7 @@ public:
private:
std::unique_ptr<u8[]> ptr;
i64 perm;
int perm;
};
//