Explorar el Código

service/fatal: Remove unnecessary semicolon

Resolves a -Wextra-semi warning.
Lioncash hace 7 años
padre
commit
11505d3d9f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/hle/service/fatal/fatal.cpp

+ 1 - 1
src/core/hle/service/fatal/fatal.cpp

@@ -138,7 +138,7 @@ static void ThrowFatalError(ResultCode error_code, FatalType fatal_type, const F
     case FatalType::ErrorReport:
         GenerateErrorReport(error_code, info);
         break;
-    };
+    }
 }
 
 void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) {