fix compiler warning

This commit is contained in:
William Hubbs 2017-10-05 18:31:07 -05:00
parent 3c05db74f6
commit 1e9af2cd42

View File

@ -408,11 +408,12 @@ int run_stop_schedule(const char *applet,
if (progressed)
printf("\n");
if (! quiet)
if (! quiet) {
if (nrunning == 1)
eerror("%s: %d process refused to stop", applet, nrunning);
else
eerror("%s: %d process(es) refused to stop", applet, nrunning);
}
return -nrunning;
}