summaryrefslogtreecommitdiff
path: root/dev-util/hfstospell/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
commitd934827bf44b7cfcf6711964418148fa60877668 (patch)
tree0625f358789b5e015e49db139cc1dbc9be00428f /dev-util/hfstospell/files
parent2e34d110f164bf74d55fced27fe0000201b3eec5 (diff)
gentoo resync : 25.11.2020
Diffstat (limited to 'dev-util/hfstospell/files')
-rw-r--r--dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch b/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch
deleted file mode 100644
index 0998beebe7d7..000000000000
--- a/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From a9d5afb14aa71893f142dfd3ae735e8930aa0f8a Mon Sep 17 00:00:00 2001
-From: Martin Liska <mliska@suse.cz>
-Date: Mon, 16 Mar 2020 11:32:10 +0100
-Subject: [PATCH] Fix a typo in wide string conversion function (#49).
-
-Revert a hunk from:
-04e4843e4c66beb61b756f3ceb2ac94628142185.
----
- main.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/main.cc b/main.cc
-index abecf46..e4fd676 100644
---- a/main.cc
-+++ b/main.cc
-@@ -61,7 +61,7 @@ static bool suggest_reals = false;
- #ifdef WINDOWS
- static std::string wide_string_to_string(const std::wstring & wstr)
- {
-- int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)§wstr.size(), NULL, 0, NULL, NULL);
-+ int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), NULL, 0, NULL, NULL);
- std::string str( size_needed, 0 );
- WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), &str[0], size_needed, NULL, NULL);
- return str;