diff options
Diffstat (limited to 'gdb/guile/scm-value.c')
-rw-r--r-- | gdb/guile/scm-value.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/guile/scm-value.c b/gdb/guile/scm-value.c index d4d76df..659acf0 100644 --- a/gdb/guile/scm-value.c +++ b/gdb/guile/scm-value.c @@ -828,7 +828,7 @@ gdbscm_value_to_bytevector (SCM self) { type = check_typedef (type); length = TYPE_LENGTH (type); - contents = value_contents (value); + contents = value_contents (value).data (); } catch (const gdb_exception &except) { @@ -978,7 +978,8 @@ gdbscm_value_to_real (SCM self) { if (is_floating_value (value)) { - d = target_float_to_host_double (value_contents (value), type); + d = target_float_to_host_double (value_contents (value).data (), + type); check = value_from_host_double (type, d); } else if (type->is_unsigned ()) |