diff liboctave/oct-fftw.cc @ 6482:7e958a1532c6

[project @ 2007-04-04 02:37:07 by jwe]
author jwe
date Wed, 04 Apr 2007 02:37:07 +0000 (2007-04-04)
parents aa5df9ba98d5
children 93c65f2a5668
line wrap: on
line diff
--- a/liboctave/oct-fftw.cc
+++ b/liboctave/oct-fftw.cc
@@ -102,7 +102,7 @@
 }
 
 #define CHECK_SIMD_ALIGNMENT(x) \
-  ((reinterpret_cast<ptrdiff_t> (x)) & 0xF == 0)
+  (((reinterpret_cast<ptrdiff_t> (x)) & 0xF) == 0)
 
 fftw_plan
 octave_fftw_planner::create_plan (int dir, const int rank,