From e8475ad46302c0439093e9e25d631e56331f20e4 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sun, 21 May 2000 21:21:20 +0000 Subject: * i387-tdep.c (print_i387_value): Cast &value to (char *) in pointer arithmetic. Fixes a bug which manifested itself on FreeBSD. --- gdb/i387-tdep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/i387-tdep.c') diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index f887da9..f56b3d0 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -176,7 +176,8 @@ print_i387_value (char *raw) { /* Copy straight over, but take care of the padding. */ memcpy (&value, raw, FPU_REG_RAW_SIZE); - memset (&value + FPU_REG_RAW_SIZE, 0, sizeof (value) - FPU_REG_RAW_SIZE); + memset ((char *) &value + FPU_REG_RAW_SIZE, 0, + sizeof (value) - FPU_REG_RAW_SIZE); } else #endif -- cgit v1.1