diff options
author | Vincent Pit <perl@profvince.com> | 2008-02-13 12:10:11 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-13 14:42:56 +0000 |
commit | cae86ea86570588a52f7ce8a0a01b6eb824103df (patch) | |
tree | 130c3ffcf7af982cc929941901612d262a450953 /dump.c | |
parent | a3e405b265335c7002fb234702f4c800f4a9accb (diff) | |
download | perl-cae86ea86570588a52f7ce8a0a01b6eb824103df.tar.gz |
PERL_MAGIC_uvar_elem should be 'u' in dump.c
From: "Vincent Pit" <perl@profvince.com>
Message-ID: <36116.147.210.17.175.1202897411.squirrel@147.210.17.175>
p4raw-id: //depot/perl@33301
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1210,7 +1210,7 @@ static const struct { const char type; const char *name; } magic_names[] = { { PERL_MAGIC_qr, "qr(r)" }, { PERL_MAGIC_sigelem, "sigelem(s)" }, { PERL_MAGIC_taint, "taint(t)" }, - { PERL_MAGIC_uvar_elem, "uvar_elem(v)" }, + { PERL_MAGIC_uvar_elem, "uvar_elem(u)" }, { PERL_MAGIC_vec, "vec(v)" }, { PERL_MAGIC_vstring, "vstring(V)" }, { PERL_MAGIC_utf8, "utf8(w)" }, |