mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-12-18 02:24:54 +00:00
Remove tautological condition.
This commit is contained in:
parent
86cbac767a
commit
94c83d5407
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ const char *
|
|||
oath_mode_name(enum oath_mode om)
|
||||
{
|
||||
|
||||
if (om >= 0 && om < om_max)
|
||||
if (om < om_max)
|
||||
return (oath_mode_names[om]);
|
||||
return (NULL);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue