summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2021-05-29 11:05:41 +0200
committerWerner Lemberg <wl@gnu.org>2021-05-29 11:07:10 +0200
commit6e253b26b2889cfff817b966c95e112bda050298 (patch)
tree680e63ef84211cba88e9e39facd28f1f43c01d43
parenta50c39aa8ec9dd90ae8f847e2e6ce3c5bfd36c3e (diff)
downloadfreetype2-6e253b26b2889cfff817b966c95e112bda050298.tar.gz
Typos in previous commit.
-rw-r--r--src/cid/cidload.c2
-rw-r--r--src/sdf/ftsdf.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/cid/cidload.c b/src/cid/cidload.c
index ea53d6cdc..b22b53683 100644
--- a/src/cid/cidload.c
+++ b/src/cid/cidload.c
@@ -758,7 +758,7 @@
error = FT_Err_Ok;
Exit:
- *data_written = FT_ULong( d - data );
+ *data_written = (FT_ULong)( d - data );
return error;
}
diff --git a/src/sdf/ftsdf.c b/src/sdf/ftsdf.c
index 70c7a08bb..f9b16bc6f 100644
--- a/src/sdf/ftsdf.c
+++ b/src/sdf/ftsdf.c
@@ -3308,9 +3308,9 @@
dist.distance = square_root( dist.distance );
if ( internal_params.flip_y )
- index = FT_UInt( y * width + x );
+ index = (FT_UInt)( y * width + x );
else
- index = FT_UInt( ( rows - y - 1 ) * width + x );
+ index = (FT_UInt)( ( rows - y - 1 ) * width + x );
/* check whether the pixel is set or not */
if ( dists[index].sign == 0 )