From d920a9e5449a2624e6a03efad02c9bb87d29ad9c Mon Sep 17 00:00:00 2001 From: Mariuspersen <59454368+Mariuspersen@users.noreply.github.com> Date: Sun, 1 Sep 2024 00:03:33 +0200 Subject: [PATCH] Update pkg.cpp fix code style non-compliance --- src/core/file_format/pkg.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/file_format/pkg.cpp b/src/core/file_format/pkg.cpp index 13e5e88b1..4ce7a1af4 100644 --- a/src/core/file_format/pkg.cpp +++ b/src/core/file_format/pkg.cpp @@ -258,8 +258,7 @@ bool PKG::Extract(const std::filesystem::path& filepath, const std::filesystem:: // Retrieve PFSC from decrypted pfs_image. pfsc_offset = GetPFSCOffset(pfs_decrypted); - if (pfsc_offset == (u32)-1) - { + if (pfsc_offset == (u32)-1) { failreason = "Could not retrieve PFSC from decrypted pfs_image"; return false; }