Drop unnecessary cast to same type

This commit is contained in:
Christian Göttsche
2023-01-26 22:55:12 +01:00
committed by Iker Pedrosa
parent 35edae5892
commit 856ffcfa5e

View File

@@ -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)) {