diff options
Diffstat (limited to 'contrib/gcc/ginclude/math-3300.h')
-rw-r--r-- | contrib/gcc/ginclude/math-3300.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/ginclude/math-3300.h b/contrib/gcc/ginclude/math-3300.h index 4e70125..5d7ba28 100644 --- a/contrib/gcc/ginclude/math-3300.h +++ b/contrib/gcc/ginclude/math-3300.h @@ -278,7 +278,7 @@ __inline static const double pow (const double x, const double y) { int i = (int) y; - if (i & 1 == 0) /* even */ + if ((i & 1) == 0) /* even */ return exp (y * log (x)); else return - exp (y * log (x)); |