From: Steve Hay Date: Mon, 4 Jul 2005 15:57:32 +0000 (+0000) Subject: Use void, not void *, to suppress RETVAL (and compiler warning) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=439efdfe48fa281a153e59516738da390f7cc558;p=p5sagit%2Fp5-mst-13.2.git Use void, not void *, to suppress RETVAL (and compiler warning) p4raw-id: //depot/perl@25075 --- diff --git a/ext/XS/APItest/APItest.xs b/ext/XS/APItest/APItest.xs index ea825b2..82479bb 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);