From: Kyle Laker Date: Thu, 23 Mar 2017 17:26:46 +0000 (-0400) Subject: whattime: Fix formatting X-Git-Tag: v3.3.13rc1~68^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5979696adad7624e0e4ad934bd4d9b4d5e4ba23e;p=procps-ng whattime: Fix formatting Update formatting within the if block to two spaces --- diff --git a/proc/whattime.c b/proc/whattime.c index 10e78c3f..f55f3636 100644 --- a/proc/whattime.c +++ b/proc/whattime.c @@ -147,9 +147,9 @@ char *sprint_uptime(int human_readable) { } if (upminutes || (!upminutes && uptime_secs < 60)) { - pos += sprintf(buf + pos, "%s%d %s", comma > 0 ? ", " : "", upminutes, - upminutes != 1 ? "minutes" : "minute"); - comma += 1; + pos += sprintf(buf + pos, "%s%d %s", comma > 0 ? ", " : "", upminutes, + upminutes != 1 ? "minutes" : "minute"); + comma += 1; } }