summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--newlib/libc/ctype/towctrans_l.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/newlib/libc/ctype/towctrans_l.c b/newlib/libc/ctype/towctrans_l.c
index eaabd8c3c..ca7e89f88 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;