forked from openembedded/openembedded-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
meta/recipes-graphics/harfbuzz/harfbuzz/0001-fix-signedness-of-char-in-tests.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 1bd3884bc0544ffbb6545ed2391f0932bb8d7d91 Mon Sep 17 00:00:00 2001 | ||
From: psykose <alice@ayaya.dev> | ||
Date: Mon, 1 Aug 2022 07:45:25 +0000 | ||
Subject: [PATCH] fix signedness of char in tests | ||
|
||
Upstream-Status: Backport | ||
Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
--- | ||
src/test-repacker.cc | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/src/test-repacker.cc b/src/test-repacker.cc | ||
index 053c0c6..1b7e1f0 100644 | ||
--- a/src/test-repacker.cc | ||
+++ b/src/test-repacker.cc | ||
@@ -112,9 +112,9 @@ static void start_lookup (int8_t type, | ||
hb_serialize_context_t* c) | ||
{ | ||
char lookup[] = { | ||
- 0, type, // type | ||
+ 0, (char)type, // type | ||
0, 0, // flag | ||
- 0, num_subtables, // num subtables | ||
+ 0, (char)num_subtables, // num subtables | ||
}; | ||
|
||
start_object (lookup, 6, c); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters