util/u_endian: set PIPE_ARCH_*_ENDIAN to 1
[mesa.git] / src / util / sha1 / sha1.c
index f36a77c2026e239ee9b964fd80c094e6c556ef7b..78b3da31d0e00a84c0b0441b111555cbac3c4607 100644 (file)
@@ -25,7 +25,7 @@
  * blk0() and blk() perform the initial expand.
  * I got the idea of expanding during the round function from SSLeay
  */
-#ifdef PIPE_ARCH_LITTLE_ENDIAN
+#if PIPE_ARCH_LITTLE_ENDIAN
 # define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
     |(rol(block->l[i],8)&0x00FF00FF))
 #else