about summary refs log tree commit diff
path: root/iconv/gconv_cache.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-07-24 07:54:33 +0000
committerUlrich Drepper <drepper@redhat.com>2001-07-24 07:54:33 +0000
commitd2a630c3c1c68493892b778d1e553631defc2786 (patch)
treea1a86a6687c599f539974704c3fe1fce49902476 /iconv/gconv_cache.c
parent0a45baaf4fe4ee73c32c11d18259e90500d62792 (diff)
downloadglibc-d2a630c3c1c68493892b778d1e553631defc2786.tar.gz
glibc-d2a630c3c1c68493892b778d1e553631defc2786.tar.xz
glibc-d2a630c3c1c68493892b778d1e553631defc2786.zip
Undo last change. Remove debugging output.
Diffstat (limited to 'iconv/gconv_cache.c')
-rw-r--r--iconv/gconv_cache.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/iconv/gconv_cache.c b/iconv/gconv_cache.c
index ab3affb26c..20a30b6fdf 100644
--- a/iconv/gconv_cache.c
+++ b/iconv/gconv_cache.c
@@ -20,7 +20,6 @@
 
 #include <dlfcn.h>
 #include <fcntl.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
@@ -241,8 +240,7 @@ __gconv_lookup_cache (const char *toset, const char *fromset,
   if (find_module_idx (toset, &toidx) != 0
       || (header->module_offset + (toidx + 1) * sizeof (struct module_entry)
 	  > cache_size))
-    {puts("toset not found");
-    return __GCONV_NOCONV;}
+    return __GCONV_NOCONV;
   to_module = &modtab[toidx];
 
   /* Avoid copy-only transformations if the user requests.   */