diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-26 21:42:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-26 21:42:59 +0000 |
commit | dff6d3cd91bb8f94ad6445629f3bfb07c761a04e (patch) | |
tree | 2fdb1d6ee1668406fc46ad998bab2befadecdcd1 /taint.c | |
parent | 12b99c3939cdc258628e89c11e6677725b2947c0 (diff) | |
download | perl-dff6d3cd91bb8f94ad6445629f3bfb07c761a04e.tar.gz |
warnings and const violations identified by compiling in C++ mode
with GCC v2.95
p4raw-id: //depot/perl@4461
Diffstat (limited to 'taint.c')
-rw-r--r-- | taint.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ #include "perl.h" void -Perl_taint_proper(pTHX_ const char *f, char *s) +Perl_taint_proper(pTHX_ const char *f, const char *s) { dTHR; /* just for taint */ char *ug; |