[base] Fix Savannah bug #44284. * src/base/ftcalc.c (FT_MulFix): Typos.
diff --git a/ChangeLog b/ChangeLog
index 49da8ee..6fc9aa6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2015-02-17 Werner Lemberg <wl@gnu.org>
+ [base] Fix Savannah bug #44284.
+
+ * src/base/ftcalc.c (FT_MulFix): Typos.
+
+2015-02-17 Werner Lemberg <wl@gnu.org>
+
[truetype] Finish compiler warning fixes for signedness issues.
* src/truetype/ttgxvar.c, src/truetype/ttsubpix.c,
diff --git a/src/base/ftcalc.c b/src/base/ftcalc.c
index 51e8a7e..dca0e1d 100644
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -236,7 +236,7 @@
{
#ifdef FT_MULFIX_ASSEMBLER
- return FT_MULFIX_ASSEMBLER( a, b );
+ return FT_MULFIX_ASSEMBLER( a_, b_ );
#else