From: Mike Yuan Date: Thu, 5 Oct 2023 16:49:45 +0000 (+0800) Subject: systemctl-show: align "Cntrl PID" correctly X-Git-Tag: v255-rc1~320 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4146960ee95462dc98722e00041b2e77316e6036;p=thirdparty%2Fsystemd.git systemctl-show: align "Cntrl PID" correctly --- diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c index c0f9747dd81..c5ed72d0664 100644 --- a/src/systemctl/systemctl-show.c +++ b/src/systemctl/systemctl-show.c @@ -656,7 +656,7 @@ static void print_status_info( if (i->main_pid > 0) fputs("; Control PID: ", stdout); else - fputs("Cntrl PID: ", stdout); /* if first in column, abbreviated so it fits alignment */ + fputs(" Cntrl PID: ", stdout); /* if first in column, abbreviated so it fits alignment */ printf(PID_FMT, i->control_pid);