diff options
author | Matt Whitlock <gentoo@mattwhitlock.name> | 2021-08-16 23:55:30 -0400 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2021-12-21 10:26:29 -0600 |
commit | dd5a6fa60f619f0db854d51efe8731946d3bfbf5 (patch) | |
tree | 168b53af9d6e39527e890a65ae95e0f8325513a2 /src/rc | |
parent | 8b247dd5d8ec890608e5c2295fc57b45c066e787 (diff) |
start-stop-daemon: fix typo in error message
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/start-stop-daemon.c | 2 |
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)); } |