diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-03-04 19:27:50 +0100 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-03-05 10:17:17 +0100 |
commit | ba2830a0185a3a4679eb0856d30b7d354c22ef16 (patch) | |
tree | 27a66e703d81c742d87a09639a4ffa88b684cf3f /www-client | |
parent | sys-apps/shadow: remove unused patch (diff) | |
download | gentoo-ba2830a0185a3a4679eb0856d30b7d354c22ef16.tar.gz gentoo-ba2830a0185a3a4679eb0856d30b7d354c22ef16.tar.bz2 gentoo-ba2830a0185a3a4679eb0856d30b7d354c22ef16.zip |
www-client/chromium: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/chromium/files/chromium-119-minizip-cast.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/www-client/chromium/files/chromium-119-minizip-cast.patch b/www-client/chromium/files/chromium-119-minizip-cast.patch deleted file mode 100644 index 0d03e8ea3d9b..000000000000 --- a/www-client/chromium/files/chromium-119-minizip-cast.patch +++ /dev/null @@ -1,23 +0,0 @@ -clang-16 does not get the types for an aggregate right and fails with narrowing error ---- a/third_party/zlib/google/zip_internal.cc -+++ b/third_party/zlib/google/zip_internal.cc -@@ -260,13 +260,12 @@ zip_fileinfo TimeToZipFileInfo(const base::Time& file_time) { - // It assumes that dates below 1980 are in the double digit format. - // Hence the fail safe option is to leave the date unset. Some programs - // might show the unset date as 1980-0-0 which is invalid. -- zip_info.tmz_date = { -- .tm_sec = static_cast<uInt>(file_time_parts.second), -- .tm_min = static_cast<uInt>(file_time_parts.minute), -- .tm_hour = static_cast<uInt>(file_time_parts.hour), -- .tm_mday = static_cast<uInt>(file_time_parts.day_of_month), -- .tm_mon = static_cast<uInt>(file_time_parts.month - 1), -- .tm_year = static_cast<uInt>(file_time_parts.year)}; -+ zip_info.tmz_date.tm_sec = static_cast<uInt>(file_time_parts.second); -+ zip_info.tmz_date.tm_min = static_cast<uInt>(file_time_parts.minute); -+ zip_info.tmz_date.tm_hour = static_cast<uInt>(file_time_parts.hour); -+ zip_info.tmz_date.tm_mday = static_cast<uInt>(file_time_parts.day_of_month); -+ zip_info.tmz_date.tm_mon = static_cast<uInt>(file_time_parts.month - 1); -+ zip_info.tmz_date.tm_year = static_cast<uInt>(file_time_parts.year); - } - - return zip_info; |