diff options
author | Steve Hay <SteveHay@planit.com> | 2005-07-04 15:57:32 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-07-04 15:57:32 +0000 |
commit | 439efdfe48fa281a153e59516738da390f7cc558 (patch) | |
tree | 99d07d69533bf05f27b9989f286b39347cf1b388 | |
parent | 063497e10fc528b1992837d48410189d2aea4e71 (diff) | |
download | perl-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.xs | 4 |
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); |