From: Li-Wen Hsu Date: Sat, 25 May 2019 21:57:01 +0000 (+0000) Subject: Remove an uneeded indentation introduced in r286196 to silence gcc warnging X-Git-Url: https://git.cameronkatri.com/pw-darwin.git/commitdiff_plain/b5b471acbfe024ca832aa18f73f49b3fbc3f14b9 Remove an uneeded indentation introduced in r286196 to silence gcc warnging MFC after: 3 days Sponsored by: The FreeBSD Foundation --- diff --git a/pw/pw_user.c b/pw/pw_user.c index 148239e..cb95d45 100644 --- a/pw/pw_user.c +++ b/pw/pw_user.c @@ -589,7 +589,7 @@ print_user(struct passwd * pwd, bool pretty, bool v7) } if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL) strftime(acexpire, sizeof acexpire, "%c", tptr); - if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL) + if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL) strftime(pwexpire, sizeof pwexpire, "%c", tptr); printf("Login Name: %-15s #%-12ju Group: %-15s #%ju\n" " Full Name: %s\n"