summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-10-27 22:22:50 +0000
committerNicholas Clark <nick@ccl4.org>2008-10-27 22:22:50 +0000
commitf065df047b3b91cdea02a1ecce8f0c0e9045d9de (patch)
treedf55e565a1ef9ad1a1ae34ab365f7be3d226995a /handy.h
parent3b3a0cf42fac6f93df8eb3e6e5fe7dba4247efb1 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index cd6e4cb896..e020c3fa61 100644
--- a/handy.h
+++ b/handy.h
@@ -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