summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2015-10-31 20:42:22 +0100
committerLukas Mai <l.mai@web.de>2015-10-31 20:44:44 +0100
commita78418585926648a4adf8e68eb5faee232e3eff9 (patch)
tree5d085bf386877cdfed20c3e94b8fcd39fbde3440 /sv.c
parentad307f47c67ebea677a600962ac8e1acb2a4d806 (diff)
downloadperl-a78418585926648a4adf8e68eb5faee232e3eff9.tar.gz
fix typo in error message
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index f0c15534fd..6fdbce78a6 100644
--- a/sv.c
+++ b/sv.c
@@ -12567,7 +12567,7 @@ Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN p
elen = quadmath_snprintf(PL_efloatbuf, PL_efloatsize,
qfmt, nv);
if ((IV)elen == -1)
- Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s|'", qfmt);
+ Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt);
if (qfmt != ptr)
Safefree(qfmt);
}