From a5810d61dab191b5a8e3cbb9de9fc9a8bad88826 Mon Sep 17 00:00:00 2001
From: Yuri Kunde Schlesner <yuriks@yuriks.net>
Date: Wed, 24 May 2017 21:04:55 -0700
Subject: [PATCH] FS: Remove unused result definition

---
 src/core/hle/service/fs/archive.cpp | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index 5c1235f8b2..632712f2cc 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -51,11 +51,6 @@ static constexpr Kernel::Handle INVALID_HANDLE{};
 namespace Service {
 namespace FS {
 
-// TODO: Verify code
-/// Returned when a function is passed an invalid handle.
-const ResultCode ERR_INVALID_HANDLE(ErrorDescription::InvalidHandle, ErrorModule::FS,
-                                    ErrorSummary::InvalidArgument, ErrorLevel::Permanent);
-
 // Command to access archive file
 enum class FileCommand : u32 {
     Dummy1 = 0x000100C6,