From: Rafael Garcia-Suarez Date: Wed, 11 Oct 2006 08:03:03 +0000 (+0000) Subject: Missing % in format string X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d04ff51e6b5e54b835a6e38cc4037da588963d3b;p=p5sagit%2Fp5-mst-13.2.git Missing % in format string p4raw-id: //depot/perl@28993 --- diff --git a/perl.h b/perl.h index 3338ea2..521610f 100644 --- a/perl.h +++ b/perl.h @@ -3969,7 +3969,7 @@ EXTCONST char PL_no_usym[] EXTCONST char PL_no_aelem[] INIT("Modification of non-creatable array value attempted, subscript %d"); EXTCONST char PL_no_helem_sv[] - INIT("Modification of non-creatable hash value attempted, subscript \""SVf"\""); + INIT("Modification of non-creatable hash value attempted, subscript \"%"SVf"\""); EXTCONST char PL_no_modify[] INIT("Modification of a read-only value attempted"); EXTCONST char PL_no_mem[]