summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2008-12-02 17:47:19 +0000
committerSteve Hay <SteveHay@planit.com>2008-12-02 17:47:19 +0000
commit4f5084fafb145bb35b8f361d4dab26b04511700d (patch)
tree0aabfb3ced8f7151ce759a77b678ba9fd7303a0a /proto.h
parent83fca67e98dfae0d928a42dd87ba57ec05eeb359 (diff)
downloadperl-4f5084fafb145bb35b8f361d4dab26b04511700d.tar.gz
Silence a compiler warning introduced by 34963
p4raw-id: //depot/perl@34982
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 768738cd63..f1526352a9 100644
--- a/proto.h
+++ b/proto.h
@@ -2914,7 +2914,7 @@ PERL_CALLCONV SV* Perl_save_svref(pTHX_ SV** sptr)
assert(sptr)
PERL_CALLCONV void Perl_save_pushptr(pTHX_ void *const ptr, const int type);
-PERL_CALLCONV void Perl_save_pushi32ptr(pTHX_ I32 i, void *const ptr, const int type);
+PERL_CALLCONV void Perl_save_pushi32ptr(pTHX_ const I32 i, void *const ptr, const int type);
PERL_CALLCONV void Perl_save_pushptrptr(pTHX_ void *const ptr1, void *const ptr2, const int type);
#if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT)
STATIC void S_save_pushptri32ptr(pTHX_ void *const ptr1, const I32 i, void *const ptr2, const int type);