commit f29a857f1516a02c966794ab80624bdce62ef1dd
parent a4779ab4f3b5fefaf55213e5114aed42e547c6f5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 19 Dec 2025 17:09:30 +0100
Delete an incorrect comment
The problem was caused by copying and pasting too quickly.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/shtr.c b/src/shtr.c
@@ -67,8 +67,7 @@ float2fix
* as input, its exponent becomes zero (i.e., E = 1023) and its mantissa is
* then the binary representation of the fractional part as expected by the
* fixed format. In other words, the (fpl-1-i)^th bit of the mantissa then
- * corresponds to the power of 2 expected in fixed representation, namely
- * the 'stack pop' procedure. */
+ * corresponds to the power of 2 expected in fixed representation. */
fpart.flt = 1.0 + (fp_abs - (double)ipart);
fpart.i64 &= BIT_I64(52)-1;