summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorAndreas König <a.koenig@mind.de>1997-11-27 18:18:53 +0100
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-27 16:57:33 +0000
commitad8d18a8e157392f6bca3ec2bd8549397e756d90 (patch)
tree15b5b218777256b824c840869434d37312d04e37 /sv.c
parentf0bea234ec0a451a052c1e57903238c612bb1c20 (diff)
downloadperl-ad8d18a8e157392f6bca3ec2bd8549397e756d90.tar.gz
Fix prototypes of sv_vsetpvfn and sv_vcatpvfn:
Subject: Re: ANNOUNCE: perl 5.004_55 is available p4raw-id: //depot/perl@323
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 649f623ae7..381c943cda 100644
--- a/sv.c
+++ b/sv.c
@@ -4099,14 +4099,14 @@ sv_catpvf(sv, pat, va_alist)
}
void
-sv_vsetpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, char *used_locale)
+sv_vsetpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *used_locale)
{
sv_setpvn(sv, "", 0);
sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, used_locale);
}
void
-sv_vcatpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, char *used_locale)
+sv_vcatpvfn(SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *used_locale)
{
dTHR;
char *p;