mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
iconv: adding missing break
break is probably intended and correct, but has no correctness implications due to is94 => is96 Reviewed by: cem, jilles Reported by: swildner@DragonFlyBSD.org MFC After: 1 week
This commit is contained in:
parent
3669918823
commit
bdf16dd67c
1 changed files with 1 additions and 0 deletions
|
|
@ -776,6 +776,7 @@ asis:
|
|||
case CS94:
|
||||
if (!(is94(string[0] & 0x7f)))
|
||||
goto asis;
|
||||
break;
|
||||
case CS96:
|
||||
if (!(is96(string[0] & 0x7f)))
|
||||
goto asis;
|
||||
|
|
|
|||
Loading…
Reference in a new issue