From 89c8257bcbc5d69ce8e30a03d59d0dd496c86cb0 Mon Sep 17 00:00:00 2001 From: roytam1 Date: Wed, 15 Sep 2021 11:36:07 +0800 Subject: [PATCH] Issue #1751 - Fix preprocessor typo to restore ARM Linux buildability --- xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp b/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp index 6475132bcf..7c16d0146d 100644 --- a/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp +++ b/xpcom/reflect/xptcall/md/unix/xptcinvoke_arm.cpp @@ -9,7 +9,7 @@ #include "mozilla/Compiler.h" -#if !defined(__arm__) && !(defined(LINUX) +#if !defined(__arm__) && !defined(LINUX) #error "This code is for Linux ARM only. Check that it works on your system, too.\nBeware that this code is highly compiler dependent." #endif