summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Joachim <svenjoac@gmx.de>2018-07-08 17:25:07 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-07-11 12:38:36 +0200
commit06bed19ea15f470811e085bc1f2ebf99ae06a233 (patch)
tree9c406951c8271f517fe26629a0a2fb677e0ab39b /src
parentmeson: drop redundant messages (diff)
downloadsystemd-06bed19ea15f470811e085bc1f2ebf99ae06a233.tar.xz
systemd-06bed19ea15f470811e085bc1f2ebf99ae06a233.zip
core: Fix grammar in error message
Diffstat (limited to 'src')
-rw-r--r--src/core/dbus-unit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c
index 3fb53c5381..884cb09204 100644
--- a/src/core/dbus-unit.c
+++ b/src/core/dbus-unit.c
@@ -1726,7 +1726,7 @@ int bus_unit_validate_load_state(Unit *u, sd_bus_error *error) {
return sd_bus_error_setf(error, BUS_ERROR_BAD_UNIT_SETTING, "Unit %s has a bad unit file setting.", u->id);
case UNIT_ERROR: /* Only show .load_error in UNIT_ERROR state */
- return sd_bus_error_set_errnof(error, u->load_error, "Unit %s failed to loaded properly: %m.", u->id);
+ return sd_bus_error_set_errnof(error, u->load_error, "Unit %s failed to load properly: %m.", u->id);
case UNIT_MASKED:
return sd_bus_error_setf(error, BUS_ERROR_UNIT_MASKED, "Unit %s is masked.", u->id);