diff options
author | Thomas Wolff <towo@towo.net> | 2018-03-26 10:00:16 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2018-03-26 10:00:16 +0200 |
commit | b49ce5af1b97c4f2ec7f116c393c5e52917f3712 (patch) | |
tree | 1ecbacbab4bd67ef3daf20f40cec3f56851eb530 /newlib/libc | |
parent | 23b5ecdaf3506d8b2e8d6918ab90756104dd446a (diff) | |
download | newlib-b49ce5af1b97c4f2ec7f116c393c5e52917f3712.zip newlib-b49ce5af1b97c4f2ec7f116c393c5e52917f3712.tar.gz newlib-b49ce5af1b97c4f2ec7f116c393c5e52917f3712.tar.bz2 |
newlib: fix indentation in toulower
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/ctype/towctrans_l.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/newlib/libc/ctype/towctrans_l.c b/newlib/libc/ctype/towctrans_l.c index eaabd8c..ca7e89f 100644 --- a/newlib/libc/ctype/towctrans_l.c +++ b/newlib/libc/ctype/towctrans_l.c @@ -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; |