summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-30 03:04:13 -0400
committerGravatar Lioncash2019-03-30 03:04:16 -0400
commit11505d3d9fbb0421f98decd3c5e8754939573eb6 (patch)
tree00a1275c3d84dd049abe860048779ced4e54c1eb
parentservice/fatal: Name FatalInfo structure members (diff)
downloadyuzu-11505d3d9fbb0421f98decd3c5e8754939573eb6.tar.gz
yuzu-11505d3d9fbb0421f98decd3c5e8754939573eb6.tar.xz
yuzu-11505d3d9fbb0421f98decd3c5e8754939573eb6.zip
service/fatal: Remove unnecessary semicolon
Resolves a -Wextra-semi warning.
-rw-r--r--src/core/hle/service/fatal/fatal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp
index 5768b5ccc..8160a006a 100644
--- a/src/core/hle/service/fatal/fatal.cpp
+++ b/src/core/hle/service/fatal/fatal.cpp
@@ -138,7 +138,7 @@ static void ThrowFatalError(ResultCode error_code, FatalType fatal_type, const F
138 case FatalType::ErrorReport: 138 case FatalType::ErrorReport:
139 GenerateErrorReport(error_code, info); 139 GenerateErrorReport(error_code, info);
140 break; 140 break;
141 }; 141 }
142} 142}
143 143
144void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) { 144void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) {