From 44dd9419812b6dc8fa164833fb274e33e5e284fa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Fri, 10 Jan 2020 22:56:31 +0100 Subject: [PATCH] instance: fix typo in error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes `removed` to proper `remove` in "Failed to removed pidfile". Fixes: b12bb150ed38 ("procd: service: Support writing pidfiles") Signed-off-by: Petr Å tetiar --- service/instance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/instance.c b/service/instance.c index 342199a..ee25868 100644 --- a/service/instance.c +++ b/service/instance.c @@ -270,7 +270,7 @@ instance_removepid(struct service_instance *in) { if (!in->pidfile) return 0; if (unlink(in->pidfile)) { - ERROR("Failed to removed pidfile: %s: %m\n", in->pidfile); + ERROR("Failed to remove pidfile: %s: %m\n", in->pidfile); return 1; } return 0; -- 2.25.1