From 4c94ea02a56f877daaa1f5d85d54d312319e2f01 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Tue, 6 May 2025 16:24:42 +0200 Subject: [PATCH] core: prefer American spelling of canceled --- src/core/dbus-unit.c | 4 ++-- src/core/dbus-unit.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index b955a2fdded..9080ad93de9 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -1771,7 +1771,7 @@ void bus_unit_send_pending_change_signal(Unit *u, bool including_new) { bus_unit_send_change_signal(u); } -int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled) { +int bus_unit_send_pending_freezer_message(Unit *u, bool canceled) { _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL; int r; @@ -1780,7 +1780,7 @@ int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled) { if (!u->pending_freezer_invocation) return 0; - if (cancelled) + if (canceled) r = sd_bus_message_new_method_error( u->pending_freezer_invocation, &reply, diff --git a/src/core/dbus-unit.h b/src/core/dbus-unit.h index e9dd1ec3170..9cf2cbf878d 100644 --- a/src/core/dbus-unit.h +++ b/src/core/dbus-unit.h @@ -10,7 +10,7 @@ extern const sd_bus_vtable bus_unit_cgroup_vtable[]; void bus_unit_send_change_signal(Unit *u); void bus_unit_send_pending_change_signal(Unit *u, bool including_new); -int bus_unit_send_pending_freezer_message(Unit *u, bool cancelled); +int bus_unit_send_pending_freezer_message(Unit *u, bool canceled); void bus_unit_send_removed_signal(Unit *u); int bus_unit_method_start_generic(sd_bus_message *message, Unit *u, JobType job_type, bool reload_if_possible, sd_bus_error *error); -- 2.47.3