ext2spice/ext2hier.c: Multiplication result converted to larger type

Fix code scanning alert no. 40: Multiplication result converted to larger type (#64)

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
Darryl Miles 2024-09-30 07:46:06 +01:00 committed by Tim Edwards
parent fe39d889f0
commit 147ca7a61f
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ spcHierWriteParams(hc, dev, scale, l, w, sdM)
if (esScale < 0)
fprintf(esSpiceF, "%g", w * scale);
else if (plist->parm_scale != 1.0)
fprintf(esSpiceF, "%g", w * scale * esScale
fprintf(esSpiceF, "%g", (double)w * scale * esScale
* plist->parm_scale * 1E-6);
else
esSIvalue(esSpiceF, 1.0E-6 * (w + plist->parm_offset)