Merge pull request #8 from vszakats/patch-1

fe.c: silence warning
This commit is contained in:
Orson Peters 2015-08-08 13:53:20 +02:00
commit 1b1b447d01
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ void fe_cswap(fe f,fe g,unsigned int b) {
int32_t x7 = f7 ^ g7;
int32_t x8 = f8 ^ g8;
int32_t x9 = f9 ^ g9;
b = -b;
b = (unsigned int) (- (int) b); /* silence warning */
x0 &= b;
x1 &= b;
x2 &= b;