falcon: conversion warning
这个提交包含在:
父节点
3773b71aa3
当前提交
1caa0cfeff
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户