summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-10-11 08:03:03 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-10-11 08:03:03 +0000
commitd04ff51e6b5e54b835a6e38cc4037da588963d3b (patch)
treeae5b944032a0f0e5e9a3cb965d193d77beb95316 /perl.h
parent9b47c5f687ab54e29d31f118522dc9feadcc60d8 (diff)
downloadperl-d04ff51e6b5e54b835a6e38cc4037da588963d3b.tar.gz
Missing % in format string
p4raw-id: //depot/perl@28993
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 3338ea2088..521610f827 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[]