falcon: conversion warning

Este commit está contenido en:
John M. Schanck 2020-09-17 11:25:08 -04:00
padre 3773b71aa3
commit 1caa0cfeff
Se han modificado 2 ficheros con 6 adiciones y 2 borrados

Ver fichero

@ -444,7 +444,9 @@ PQCLEAN_FALCON1024_CLEAN_comp_decode(
}
}
x[u] = (int16_t) m;
if (s) x[u] = -x[u];
if (s) {
x[u] = (int16_t) -x[u];
}
}
return v;
}

Ver fichero

@ -444,7 +444,9 @@ PQCLEAN_FALCON512_CLEAN_comp_decode(
}
}
x[u] = (int16_t) m;
if (s) x[u] = -x[u];
if (s) {
x[u] = (int16_t) -x[u];
}
}
return v;
}