towupper: Eliminate dead code
Fixes Coverity CID 59865 Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
941df759a2
commit
5c758bf910
|
@ -397,9 +397,6 @@ _DEFUN(towupper,(c), wint_t c)
|
||||||
|
|
||||||
if (c == 0x04cf)
|
if (c == 0x04cf)
|
||||||
return 0x04c0;
|
return 0x04c0;
|
||||||
|
|
||||||
if (c >= 0x04f7 && c <= 0x04f9)
|
|
||||||
return (c - 1);
|
|
||||||
}
|
}
|
||||||
else if (c < 0x0600)
|
else if (c < 0x0600)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue