aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'array.c')
-rw-r--r--array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/array.c b/array.c
index e814e976..f28a32de 100644
--- a/array.c
+++ b/array.c
@@ -882,10 +882,10 @@ static void
pr_node(NODE *n)
{
if ((n->flags & NUMBER) != 0)
- printf("%s %g p: %p", flags2str(n->flags), n->numbr, n);
+ printf("%s %g p: %p", flags2str(n->flags), n->numbr, (void *) n);
else
printf("%s %.*s p: %p", flags2str(n->flags),
- (int) n->stlen, n->stptr, n);
+ (int) n->stlen, n->stptr, (void *) n);
}