summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-07-04 15:57:32 +0000
committerSteve Hay <SteveHay@planit.com>2005-07-04 15:57:32 +0000
commit439efdfe48fa281a153e59516738da390f7cc558 (patch)
tree99d07d69533bf05f27b9989f286b39347cf1b388
parent063497e10fc528b1992837d48410189d2aea4e71 (diff)
downloadperl-439efdfe48fa281a153e59516738da390f7cc558.tar.gz
Use void, not void *, to suppress RETVAL (and compiler warning)
p4raw-id: //depot/perl@25075
-rw-r--r--ext/XS/APItest/APItest.xs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/XS/APItest/APItest.xs b/ext/XS/APItest/APItest.xs
index ea825b28c2..82479bbf89 100644
--- a/ext/XS/APItest/APItest.xs
+++ b/ext/XS/APItest/APItest.xs
@@ -161,13 +161,13 @@ fetch(hash, key_sv)
OUTPUT:
RETVAL
-void *
+void
test_hv_free_ent()
PPCODE:
test_freeent(&Perl_hv_free_ent);
XSRETURN(4);
-void *
+void
test_hv_delayfree_ent()
PPCODE:
test_freeent(&Perl_hv_delayfree_ent);