summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2023-12-13 15:48:12 +0000
committerGitHub <noreply@github.com>2023-12-13 15:48:12 +0000
commit52a144745de1b5db3e56574efd7aafaefead45f7 (patch)
tree0e8250ffdf421a8ee26112bbe9c21cd032ef6d1a /Source
parent3f06d32dcdca4bba35a21326e811b0f8ceca218c (diff)
parent91f691296c73c67eaab3c05667e00879428837bf (diff)
Merge pull request #12408 from lioncash/enums
General: Resolve -Wswitch warnings
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/IOS/Crypto/Sha.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Core/IOS/Crypto/Sha.cpp b/Source/Core/Core/IOS/Crypto/Sha.cpp
index 1844020587..de4415e140 100644
--- a/Source/Core/Core/IOS/Crypto/Sha.cpp
+++ b/Source/Core/Core/IOS/Crypto/Sha.cpp
@@ -93,6 +93,10 @@ std::optional<IPCReply> ShaDevice::IOCtlV(const IOCtlVRequest& request)
break;
return_code = ProcessShaCommand(command, request);
+ break;
+
+ case ShaIoctlv::ShaCommandUnknown:
+ break;
}
return IPCReply(return_code);