32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 09d6a6b131c7dc7c17b8c5584c334c2eda88ebed Mon Sep 17 00:00:00 2001
|
|
From: Olivier Fourdan <ofourdan@redhat.com>
|
|
Date: Wed, 17 Dec 2025 18:16:22 +0100
|
|
Subject: [PATCH 2/6] input-source-manager: Fix compiler warnings
|
|
|
|
Fix compiler warnings with warning level 2 (-Wall -Wextra).
|
|
|
|
No functional change.
|
|
|
|
Part-of: <https://gitlab.gnome.org/GNOME/gnome-kiosk/-/merge_requests/111>
|
|
(cherry picked from commit 662b32be5aa5a2ea94fdda640d417874ae0848fc)
|
|
---
|
|
compositor/kiosk-input-sources-manager.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/compositor/kiosk-input-sources-manager.c b/compositor/kiosk-input-sources-manager.c
|
|
index 6200af5..8a30623 100644
|
|
--- a/compositor/kiosk-input-sources-manager.c
|
|
+++ b/compositor/kiosk-input-sources-manager.c
|
|
@@ -1320,7 +1320,7 @@ kiosk_input_sources_manager_remove_key_bindings (KioskInputSourcesManager *self)
|
|
static void
|
|
kiosk_input_sources_manager_maybe_activate_higher_priority_input_engine (KioskInputSourcesManager *self)
|
|
{
|
|
- size_t i;
|
|
+ ssize_t i;
|
|
|
|
/* It's possible the user has an input engine configured to be used, but it wasn't ready
|
|
* before. If so, now that it's ready, we should activate it.
|
|
--
|
|
2.53.0
|
|
|