aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2024-01-23 09:41:41 +0800
committerPo Lu2024-01-23 09:41:41 +0800
commita3d10046d9945148c20aa1db4e6ba8ba1bc5eb3e (patch)
treedde1d2073db41eee9db43be0146756554db1daea /src
parentf821ac29e0cf69316d6c721bafe9b749b47a6db3 (diff)
downloademacs-a3d10046d9945148c20aa1db4e6ba8ba1bc5eb3e.tar.gz
emacs-a3d10046d9945148c20aa1db4e6ba8ba1bc5eb3e.zip
* src/sfnt.c (sfnt_mul_f26dot6_fixed): Correct typo in last change.
Diffstat (limited to 'src')
-rw-r--r--src/sfnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sfnt.c b/src/sfnt.c
index ce7765e8f3e..36a7fbf3ea0 100644
--- a/src/sfnt.c
+++ b/src/sfnt.c
@@ -6554,7 +6554,7 @@ sfnt_mul_f2dot14 (sfnt_f2dot14 a, int32_t b)
6554static sfnt_f26dot6 6554static sfnt_f26dot6
6555sfnt_mul_f26dot6_fixed (sfnt_f26dot6 x, sfnt_fixed y) 6555sfnt_mul_f26dot6_fixed (sfnt_f26dot6 x, sfnt_fixed y)
6556{ 6556{
6557 return sfnt_mul_fixed (x, y); 6557 return sfnt_mul_fixed_round (x, y);
6558} 6558}
6559 6559
6560/* Return the floor of the specified 26.6 fixed point value X. */ 6560/* Return the floor of the specified 26.6 fixed point value X. */