Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
740 B
Diff
48 lines
740 B
Diff
diff --git a/ft.c b/ft.c
|
|
index 4ca1ca6..3ae9ac9 100644
|
|
--- a/ft.c
|
|
+++ b/ft.c
|
|
@@ -457,7 +457,7 @@ static double lastx, lasty;
|
|
|
|
static int
|
|
outl_moveto(
|
|
- FT_Vector *to,
|
|
+ const FT_Vector *to,
|
|
void *unused
|
|
)
|
|
{
|
|
@@ -477,7 +477,7 @@ outl_moveto(
|
|
|
|
static int
|
|
outl_lineto(
|
|
- FT_Vector *to,
|
|
+ const FT_Vector *to,
|
|
void *unused
|
|
)
|
|
{
|
|
@@ -493,8 +493,8 @@ outl_lineto(
|
|
|
|
static int
|
|
outl_conicto(
|
|
- FT_Vector *control1,
|
|
- FT_Vector *to,
|
|
+ const FT_Vector *control1,
|
|
+ const FT_Vector *to,
|
|
void *unused
|
|
)
|
|
{
|
|
@@ -514,9 +514,9 @@ outl_conicto(
|
|
|
|
static int
|
|
outl_cubicto(
|
|
- FT_Vector *control1,
|
|
- FT_Vector *control2,
|
|
- FT_Vector *to,
|
|
+ const FT_Vector *control1,
|
|
+ const FT_Vector *control2,
|
|
+ const FT_Vector *to,
|
|
void *unused
|
|
)
|
|
{
|
|
|