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

This commit is contained in:
roytam1 2021-09-15 11:36:07 +08:00
commit 89c8257bcb

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