From 6d14711d3f6fdad8497e4f6eade5d00656688aee Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Wed, 26 Sep 2018 15:36:51 -0400 Subject: [PATCH] Bug 1494392 - fix thinkos in the aarch64 windows interceptor code; r=aklotz --- mozglue/misc/interceptor/PatcherDetour.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozglue/misc/interceptor/PatcherDetour.h b/mozglue/misc/interceptor/PatcherDetour.h index 277a3a46891f..b23b4d74ea4c 100644 --- a/mozglue/misc/interceptor/PatcherDetour.h +++ b/mozglue/misc/interceptor/PatcherDetour.h @@ -134,7 +134,7 @@ public: continue; } #elif defined(_M_ARM64) - MOZ_RELEASE_ASSERT(false, "Shouldn't get here") + MOZ_RELEASE_ASSERT(false, "Shouldn't get here"); #else #error "Unknown processor type" #endif @@ -969,7 +969,7 @@ protected: } } #elif defined(_M_ARM64) - MOZ_RELEASE_ASSERT(false, "Shouldn't get here") + MOZ_RELEASE_ASSERT(false, "Shouldn't get here"); #else #error "Unknown processor type" #endif