aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-value.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-value.c')
-rw-r--r--gdb/python/py-value.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c
index 12e9562..93cb9b9 100644
--- a/gdb/python/py-value.c
+++ b/gdb/python/py-value.c
@@ -673,7 +673,7 @@ valpy_format_string (PyObject *self, PyObject *args, PyObject *kw)
}
struct value_print_options opts;
- get_user_print_options (&opts);
+ gdbpy_get_print_options (&opts);
opts.deref_ref = 0;
/* We need objects for booleans as the "p" flag for bools is new in
@@ -1163,7 +1163,7 @@ valpy_str (PyObject *self)
{
struct value_print_options opts;
- get_user_print_options (&opts);
+ gdbpy_get_print_options (&opts);
opts.deref_ref = 0;
string_file stb;