diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-10-27 22:22:50 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-10-27 22:22:50 +0000 |
commit | f065df047b3b91cdea02a1ecce8f0c0e9045d9de (patch) | |
tree | df55e565a1ef9ad1a1ae34ab365f7be3d226995a /handy.h | |
parent | 3b3a0cf42fac6f93df8eb3e6e5fe7dba4247efb1 (diff) | |
download | perl-f065df047b3b91cdea02a1ecce8f0c0e9045d9de.tar.gz |
MHX notes that I have a superfluous void cast.
p4raw-id: //depot/perl@34612
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ Null SV pointer. (No longer available when C<PERL_CORE> 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 |