summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-04-18 20:07:55 +0200
committerConrad Kostecki <conikost@gentoo.org>2024-04-18 21:31:46 +0200
commit29b6a73a73351ecfda05d0b968dc672f2c9dc1e0 (patch)
tree65a3c12f8b08c8eaeafbe72a6b495532e94f95f0 /gui-wm/hyprland
parentgames-simulation/openrct2: remove unused patch (diff)
downloadgentoo-29b6a73a73351ecfda05d0b968dc672f2c9dc1e0.tar.gz
gentoo-29b6a73a73351ecfda05d0b968dc672f2c9dc1e0.tar.bz2
gentoo-29b6a73a73351ecfda05d0b968dc672f2c9dc1e0.zip
gui-wm/hyprland: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'gui-wm/hyprland')
-rw-r--r--gui-wm/hyprland/files/gcc14.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/gui-wm/hyprland/files/gcc14.patch b/gui-wm/hyprland/files/gcc14.patch
deleted file mode 100644
index 1bebe9e9d4c4..000000000000
--- a/gui-wm/hyprland/files/gcc14.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-# From: https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/f3e1f7b2a70a500b740bfc406e893eba0852699a
-diff --git a/subprojects/wlroots/backend/libinput/tablet_pad.c b/subprojects/wlroots/backend/libinput/tablet_pad.c
-index 2e74022a..e5327528 100644
---- a/subprojects/wlroots/backend/libinput/tablet_pad.c
-+++ b/subprojects/wlroots/backend/libinput/tablet_pad.c
-@@ -33,7 +33,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad,
- ++group->ring_count;
- }
- }
-- group->rings = calloc(sizeof(unsigned int), group->ring_count);
-+ group->rings = calloc(group->ring_count, sizeof(unsigned int));
- if (group->rings == NULL) {
- goto group_fail;
- }
-@@ -50,7 +50,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad,
- ++group->strip_count;
- }
- }
-- group->strips = calloc(sizeof(unsigned int), group->strip_count);
-+ group->strips = calloc(group->strip_count, sizeof(unsigned int));
- if (group->strips == NULL) {
- goto group_fail;
- }
-@@ -66,7 +66,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad,
- ++group->button_count;
- }
- }
-- group->buttons = calloc(sizeof(unsigned int), group->button_count);
-+ group->buttons = calloc(group->button_count, sizeof(unsigned int));
- if (group->buttons == NULL) {
- goto group_fail;
- }