newlib: fix indentation in toulower

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Thomas Wolff 2018-03-26 10:00:16 +02:00 committed by Corinna Vinschen
parent 23b5ecdaf3
commit b49ce5af1b
1 changed files with 10 additions and 10 deletions

View File

@ -57,16 +57,16 @@ toulower (wint_t c)
case TO1:
switch (cce->delta)
{
case EVENCAP:
if (!(c & 1))
return c + 1;
break;
case ODDCAP:
if (c & 1)
return c + 1;
break;
default:
break;
case EVENCAP:
if (!(c & 1))
return c + 1;
break;
case ODDCAP:
if (c & 1)
return c + 1;
break;
default:
break;
}
default:
break;