falcon: conversion warning
This commit is contained in:
parent
c8cfccc488
commit
1ba4f503a7
@ -444,7 +444,9 @@ PQCLEAN_FALCON1024_CLEAN_comp_decode(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
x[u] = (int16_t) m;
|
x[u] = (int16_t) m;
|
||||||
if (s) x[u] = -x[u];
|
if (s) {
|
||||||
|
x[u] = (int16_t) -x[u];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
@ -444,7 +444,9 @@ PQCLEAN_FALCON512_CLEAN_comp_decode(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
x[u] = (int16_t) m;
|
x[u] = (int16_t) m;
|
||||||
if (s) x[u] = -x[u];
|
if (s) {
|
||||||
|
x[u] = (int16_t) -x[u];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user