diff options
author | Lukas Mai <l.mai@web.de> | 2015-10-31 20:42:22 +0100 |
---|---|---|
committer | Lukas Mai <l.mai@web.de> | 2015-10-31 20:44:44 +0100 |
commit | a78418585926648a4adf8e68eb5faee232e3eff9 (patch) | |
tree | 5d085bf386877cdfed20c3e94b8fcd39fbde3440 /sv.c | |
parent | ad307f47c67ebea677a600962ac8e1acb2a4d806 (diff) | |
download | perl-a78418585926648a4adf8e68eb5faee232e3eff9.tar.gz |
fix typo in error message
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |