This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Missing % in format string
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 11 Oct 2006 08:03:03 +0000 (08:03 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 11 Oct 2006 08:03:03 +0000 (08:03 +0000)
p4raw-id: //depot/perl@28993

perl.h

diff --git a/perl.h b/perl.h
index 3338ea2..521610f 100644 (file)
--- 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[]