summaryrefslogtreecommitdiff
path: root/locale.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-03-25 11:14:09 -0600
committerNicholas Clark <nick@ccl4.org>2005-03-25 23:46:22 +0000
commitdd374669df59cc2457708a01ea0f6d332912530b (patch)
treec085cf838d250f49dfc8f9bc949862489e3b3ad8 /locale.c
parentbd5f3bc473acbb69a352d57b0baf5d694577ad8e (diff)
downloadperl-dd374669df59cc2457708a01ea0f6d332912530b.tar.gz
Consting five
Message-ID: <20050325231409.GB17660@petdance.com> [with modification - the extra argument to incpush was supposed to be being used] p4raw-id: //depot/perl@24081
Diffstat (limited to 'locale.c')
-rw-r--r--locale.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/locale.c b/locale.c
index c6b8782084..7f336a6e91 100644
--- a/locale.c
+++ b/locale.c
@@ -186,6 +186,7 @@ Perl_new_ctype(pTHX_ char *newctype)
}
#endif /* USE_LOCALE_CTYPE */
+ (void)newctype;
}
/*
@@ -530,7 +531,7 @@ Perl_init_i18nl10n(pTHX_ int printwarn)
This is an alternative to using the -C command line switch
(the -C if present will override this). */
{
- char *p = PerlEnv_getenv("PERL_UNICODE");
+ const char *p = PerlEnv_getenv("PERL_UNICODE");
PL_unicode = p ? parse_unicode_opts(&p) : 0;
}
#endif