1
1
réplica de https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

falcon: conversion warning

Este commit está contenido en:
John M. Schanck 2020-09-17 11:25:08 -04:00 cometido por Kris Kwiatkowski
padre c8cfccc488
commit 1ba4f503a7
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;
}