From 550bda3e54a0895e027fee14860f14171a357ac9 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Tue, 5 Jul 2005 15:06:52 +0000 Subject: Recoding Fixes --- src/rcclocale.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/rcclocale.c') diff --git a/src/rcclocale.c b/src/rcclocale.c index d3efaa6..084efa2 100644 --- a/src/rcclocale.c +++ b/src/rcclocale.c @@ -32,13 +32,11 @@ int rccLocaleGetLanguage(char *result, const char *lv, unsigned int n) { int locale_class; const char *l; - printf("Locale: %p\n", lv); if (!lv) return -1; locale_class = rccLocaleGetClassByName(lv); if (locale_class >= 0) { l = setlocale(locale_class, NULL); - puts(l); if (!l) return -1; else if ((strcmp(l,"C")==0)||(strcmp(l,"POSIX")==0)) return -1; } else return -1; @@ -56,8 +54,6 @@ int rccLocaleGetLanguage(char *result, const char *lv, unsigned int n) { strncpy(result,l,i); result[i]=0; - puts("------------------->"); - puts(result); return 0; } -- cgit v1.2.3