extract/ExtCouple.c: Multiplication result converted to larger type

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

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:13:21 +01:00 committed by Tim Edwards
parent d6cc790d48
commit 00086817a4
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ extRemoveSubcap(bp, clip, esws)
if (dnear < 0) dnear = 0; /* Don't count underlap */
mult = ExtCurStyle->exts_overlapMult[ta][0];
snear = 0.6366 * atan(mult * dnear);
snear = 0.6366 * atan((double)mult * dnear);
/* "snear" is the fractional portion of the fringe cap seen by */
/* the substrate, so (1.0 - snear) is the part that is blocked. */