summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorHåkon Hægland <hakon.hagland@gmail.com>2020-05-07 20:57:31 +0200
committerJames E Keenan <jkeenan@cpan.org>2020-05-10 08:00:08 -0400
commit6319bad96eba493c5f3bc7857e1c58687c461d70 (patch)
tree6c7c6da9c0402cc29a5ebd7fb15dab6d0b92fd32 /dist
parent90272e98be601d2d11e0d3b74eccbe955cea2ee4 (diff)
downloadperl-6319bad96eba493c5f3bc7857e1c58687c461d70.tar.gz
Fixed typemap in perlxs.
Fixed quoting and string concatenation mistakes in C++ typemap in perlxs. Committer: Håkon Hægland is now a Perl author.
Diffstat (limited to 'dist')
-rw-r--r--dist/ExtUtils-ParseXS/lib/perlxs.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/ExtUtils-ParseXS/lib/perlxs.pod b/dist/ExtUtils-ParseXS/lib/perlxs.pod
index d114b429d1..4cc0d6824c 100644
--- a/dist/ExtUtils-ParseXS/lib/perlxs.pod
+++ b/dist/ExtUtils-ParseXS/lib/perlxs.pod
@@ -1748,8 +1748,8 @@ example.
if( sv_isobject($arg) && (SvTYPE(SvRV($arg)) == SVt_PVMG) )
$var = ($type)SvIV((SV*)SvRV( $arg ));
else{
- warn("${Package}::$func_name() -- " .
- "$var is not a blessed SV reference");
+ warn(\"${Package}::$func_name() -- \"
+ \"$var is not a blessed SV reference\");
XSRETURN_UNDEF;
}