mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove break after return.
This commit is contained in:
parent
107f86a291
commit
845b8cbcbf
1 changed files with 0 additions and 2 deletions
|
|
@ -276,10 +276,8 @@ linear_search(wchar_t *string, unsigned char *front, unsigned char *back)
|
|||
switch (compare(string, front, back)) {
|
||||
case EQUAL: /* Found it. */
|
||||
return (front);
|
||||
break;
|
||||
case LESS: /* No such string. */
|
||||
return (NULL);
|
||||
break;
|
||||
case GREATER: /* Keep going. */
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue