From 545ade835d0b5ba3acb64556a196ea8c55e4e0f5 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 2 Nov 2021 10:10:47 -0700 Subject: [PATCH] creport: fix errant ) --- stratosphere/creport/source/creport_modules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/creport/source/creport_modules.cpp b/stratosphere/creport/source/creport_modules.cpp index 84d87171b..69620b92b 100644 --- a/stratosphere/creport/source/creport_modules.cpp +++ b/stratosphere/creport/source/creport_modules.cpp @@ -210,7 +210,7 @@ namespace ams::creport { } /* Also validate that we're looking at a valid name. */ - if (rodata_start.module_path.zero != 0 || rodata_start.module_path.path_length <= 0)) { + if (rodata_start.module_path.zero != 0 || rodata_start.module_path.path_length <= 0) { return; } }