summaryrefslogtreecommitdiffstats
path: root/fs/nls
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-01-04 16:03:48 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-01-04 16:03:48 +0000
commit78c388aed2b7184182c08428db1de6c872d815f5 (patch)
tree4b2003b1b4ceb241a17faa995da8dd1004bb8e45 /fs/nls
parenteb7a5bf93aaa4be1d7c6181100ab7639e74d67f7 (diff)
Merge with Linux 2.1.131 and more MIPS goodies.
(Did I mention that CVS is buggy ...)
Diffstat (limited to 'fs/nls')
-rw-r--r--fs/nls/nls_base.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/nls/nls_base.c b/fs/nls/nls_base.c
index afc219838..9654c8ec2 100644
--- a/fs/nls/nls_base.c
+++ b/fs/nls/nls_base.c
@@ -49,7 +49,6 @@ utf8_mbtowc(__u16 *p, const __u8 *s, int n)
int c0, c, nc;
struct utf8_table *t;
- printk("utf8_mbtowc\n");
nc = 0;
c0 = *s;
l = c0;
@@ -80,11 +79,9 @@ utf8_mbstowcs(__u16 *pwcs, const __u8 *s, int n)
const __u8 *ip;
int size;
- printk("\nutf8_mbstowcs: n=%d\n", n);
op = pwcs;
ip = s;
while (*ip && n > 0) {
- printk(" %02x", *ip);
if (*ip & 0x80) {
size = utf8_mbtowc(op, ip, n);
if (size == -1) {