Index: webrtc/base/sha1.cc |
diff --git a/webrtc/base/sha1.cc b/webrtc/base/sha1.cc |
index 0e4759793b016cdc946ba852351abbe59262e3e2..b2af313be71593f3d4a918af8e2fbd61a170fe80 100644 |
--- a/webrtc/base/sha1.cc |
+++ b/webrtc/base/sha1.cc |
@@ -116,7 +116,7 @@ namespace { |
// blk0() and blk() perform the initial expand. |
// I got the idea of expanding during the round function from SSLeay |
// FIXME: can we do this in an endian-proof way? |
-#ifdef ARCH_CPU_BIG_ENDIAN |
+#ifdef RTC_ARCH_CPU_BIG_ENDIAN |
#define blk0(i) block->l[i] |
#else |
#define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \ |