aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ell/fix-utf8.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-03-13 10:24:06 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-03-13 10:27:45 +0000
commit01e09841b0fcf41fe9d5dea94d6ebadf9bcf69ad (patch)
treebf68182deabf58fbead5e8ffda202141e0f56b09 /testing/ell/fix-utf8.patch
parent7842f046fd3ae0b67fcd363f2b3ccae160c368ee (diff)
downloadaports-01e09841b0fcf41fe9d5dea94d6ebadf9bcf69ad.tar.bz2
aports-01e09841b0fcf41fe9d5dea94d6ebadf9bcf69ad.tar.xz
main/ell: move from testing
ref #10041
Diffstat (limited to 'testing/ell/fix-utf8.patch')
-rw-r--r--testing/ell/fix-utf8.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/ell/fix-utf8.patch b/testing/ell/fix-utf8.patch
deleted file mode 100644
index 9d4a520240..0000000000
--- a/testing/ell/fix-utf8.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/ell/utf8.c b/ell/utf8.c
-index e9998f7..b1e8440 100644
---- a/ell/utf8.c
-+++ b/ell/utf8.c
-@@ -93,7 +93,7 @@ LIB_EXPORT int l_utf8_get_codepoint(const char *str, size_t len, wchar_t *cp)
- if (len == 0)
- return 0;
-
-- if (str[0] > 0) {
-+ if ((signed char)str[0] > 0) {
- *cp = str[0];
- return 1;
- }