From 5035d18baaad5cee4cbc671710de472b9f25a920 Mon Sep 17 00:00:00 2001
From: bunnei <bunneidev@gmail.com>
Date: Sat, 20 Jan 2018 23:01:00 -0500
Subject: [PATCH] file_sys: Clang format fixes.

---
 src/core/file_sys/filesystem.h         | 2 +-
 src/core/file_sys/romfs_factory.cpp    | 3 +--
 src/core/file_sys/romfs_filesystem.cpp | 3 ++-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h
index eb3d9c4d66..02705506b9 100644
--- a/src/core/file_sys/filesystem.h
+++ b/src/core/file_sys/filesystem.h
@@ -139,7 +139,7 @@ public:
      * @return Opened file, or error code
      */
     virtual ResultVal<std::unique_ptr<StorageBackend>> OpenFile(const Path& path,
-                                                          const Mode& mode) const = 0;
+                                                                const Mode& mode) const = 0;
 
     /**
      * Open a directory specified by its path
diff --git a/src/core/file_sys/romfs_factory.cpp b/src/core/file_sys/romfs_factory.cpp
index 590c2acb30..e0de49f050 100644
--- a/src/core/file_sys/romfs_factory.cpp
+++ b/src/core/file_sys/romfs_factory.cpp
@@ -23,8 +23,7 @@ ResultVal<std::unique_ptr<FileSystemBackend>> RomFS_Factory::Open(const Path& pa
     return MakeResult<std::unique_ptr<FileSystemBackend>>(std::move(archive));
 }
 
-ResultCode RomFS_Factory::Format(const Path& path,
-                                        const FileSys::ArchiveFormatInfo& format_info) {
+ResultCode RomFS_Factory::Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) {
     LOG_ERROR(Service_FS, "Unimplemented Format archive %s", GetName().c_str());
     // TODO(bunnei): Find the right error code for this
     return ResultCode(-1);
diff --git a/src/core/file_sys/romfs_filesystem.cpp b/src/core/file_sys/romfs_filesystem.cpp
index 5b5c5a73e4..ca1463d7c9 100644
--- a/src/core/file_sys/romfs_filesystem.cpp
+++ b/src/core/file_sys/romfs_filesystem.cpp
@@ -69,7 +69,8 @@ ResultCode RomFS_FileSystem::RenameDirectory(const Path& src_path, const Path& d
     return ResultCode(-1);
 }
 
-ResultVal<std::unique_ptr<DirectoryBackend>> RomFS_FileSystem::OpenDirectory(const Path& path) const {
+ResultVal<std::unique_ptr<DirectoryBackend>> RomFS_FileSystem::OpenDirectory(
+    const Path& path) const {
     return MakeResult<std::unique_ptr<DirectoryBackend>>(std::make_unique<ROMFSDirectory>());
 }