summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorTom Phoenix <rootbeer@teleport.com>1998-03-28 07:26:46 -0800
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-04-02 16:13:24 +0000
commit1930e9396af9d9fc0058435c827d67f591aa4e03 (patch)
tree24df53c731d9ac3f949f340ce1dc2e5257c423db /pp.c
parent8fde5078471a0c312457a335e09b9df2f722133e (diff)
downloadperl-1930e9396af9d9fc0058435c827d67f591aa4e03.tar.gz
Re: Odd number of elements in hash list.
p4raw-id: //depot/perl@858
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index f2a6141eb4..3dc5a72b51 100644
--- a/pp.c
+++ b/pp.c
@@ -2489,7 +2489,7 @@ PP(pp_anonhash)
if (MARK < SP)
sv_setsv(val, *++MARK);
else if (dowarn)
- warn("Odd number of elements in hash list");
+ warn("Odd number of elements in hash assignment");
(void)hv_store_ent(hv,key,val,0);
}
SP = ORIGMARK;