From a6c35202f79a6bf61e798ec2a0f0a98ccdc60936 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Tue, 14 Mar 2023 01:21:32 +0200 Subject: [PATCH] Fix Mac Build --- include/fs/archive_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fs/archive_base.hpp b/include/fs/archive_base.hpp index b80154b0..c3ce9511 100644 --- a/include/fs/archive_base.hpp +++ b/include/fs/archive_base.hpp @@ -107,7 +107,7 @@ struct ArchiveSession { FSPath path; bool isOpen; - ArchiveSession(ArchiveBase* archive, const FSPath& filePath, bool isOpen = true) : archive(archive), path(path), isOpen(isOpen) {} + ArchiveSession(ArchiveBase* archive, const FSPath& filePath, bool isOpen = true) : archive(archive), path(filePath), isOpen(isOpen) {} }; // Represents a file descriptor obtained from OpenFile. If the optional is nullopt, opening the file failed.