whattime: Fix formatting

Update formatting within the if block to two spaces
This commit is contained in:
Kyle Laker 2017-03-23 13:26:46 -04:00 committed by Craig Small
parent 325d68b7c3
commit 5979696ada

View File

@ -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;
}
}