From: Nicholas Clark Date: Mon, 27 Oct 2008 22:22:50 +0000 (+0000) Subject: MHX notes that I have a superfluous void cast. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f065df047b3b91cdea02a1ecce8f0c0e9045d9de;p=p5sagit%2Fp5-mst-13.2.git MHX notes that I have a superfluous void cast. p4raw-id: //depot/perl@34612 --- diff --git a/handy.h b/handy.h index cd6e4cb..e020c3f 100644 --- a/handy.h +++ b/handy.h @@ -49,7 +49,7 @@ Null SV pointer. (No longer available when C is defined.) #define FALSE (0) #if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN) -# define MUTABLE_PTR(p) ({ void *_p = (p); (void *) _p; }) +# define MUTABLE_PTR(p) ({ void *_p = (p); _p; }) #else # define MUTABLE_PTR(p) ((void *) (p)) #endif