aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Whitlock <gentoo@mattwhitlock.name>2021-08-16 23:55:30 -0400
committerWilliam Hubbs <w.d.hubbs@gmail.com>2021-12-21 10:26:29 -0600
commitdd5a6fa60f619f0db854d51efe8731946d3bfbf5 (patch)
tree168b53af9d6e39527e890a65ae95e0f8325513a2
parent8b247dd5d8ec890608e5c2295fc57b45c066e787 (diff)
start-stop-daemon: fix typo in error message
-rw-r--r--src/rc/start-stop-daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index 656ae9fa..e6febe82 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -780,7 +780,7 @@ int main(int argc, char **argv)
if (nicelevel) {
if (setpriority(PRIO_PROCESS, mypid, nicelevel) == -1)
- eerrorx("%s: setpritory %d: %s",
+ eerrorx("%s: setpriority %d: %s",
applet, nicelevel,
strerror(errno));
}