From: Christian Göttsche Date: Thu, 26 Jan 2023 21:55:12 +0000 (+0100) Subject: Drop unnecessary cast to same type X-Git-Tag: 4.15.0-rc1~224 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=856ffcfa5e998f323c8f40a215e5695cd6d5e75b;p=thirdparty%2Fshadow.git Drop unnecessary cast to same type --- diff --git a/src/faillog.c b/src/faillog.c index dbcf5a5f9..1fee5c9b0 100644 --- a/src/faillog.c +++ b/src/faillog.c @@ -291,7 +291,7 @@ static void reset (void) while ( (pwent = getpwent ()) != NULL ) { if ( uflg && ( (has_umin && (pwent->pw_uid < (uid_t)umin)) - || (pwent->pw_uid > (uid_t)uidmax))) { + || (pwent->pw_uid > uidmax))) { continue; } if (reset_one (pwent->pw_uid)) {