Issue #1751 - Fix preprocessor typo to restore ARM Linux buildability

This commit is contained in:
Matt A. Tobin 2021-08-25 18:47:34 -04:00 committed by roytam1
commit 853f740d6b

View file

@ -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