summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-05-23 11:38:34 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-05-23 11:38:34 +0000
commit5f52a9a9d70e7135bcdcd2ce1817c062e8272518 (patch)
tree4d487b52934eee2505ceb30677c9bf9fa39aa68e
parenta560f29b68cee2c6b71ff8f85b84ebab612b34b0 (diff)
downloadperl-5f52a9a9d70e7135bcdcd2ce1817c062e8272518.tar.gz
Declaration nit spotted by Jarkko
p4raw-id: //depot/perl@24550
-rw-r--r--hv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index e14f7abb2f..2996a8e88b 100644
--- a/hv.c
+++ b/hv.c
@@ -1635,7 +1635,7 @@ Perl_hv_undef(pTHX_ HV *hv)
}
struct xpvhv_aux*
-S_hv_auxinit(aTHX) {
+S_hv_auxinit(pTHX) {
struct xpvhv_aux *iter;
New(0, iter, 1, struct xpvhv_aux);