aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/rust-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/rust-parse.c b/gdb/rust-parse.c
index 490adb3..e25ae54 100644
--- a/gdb/rust-parse.c
+++ b/gdb/rust-parse.c
@@ -1773,7 +1773,7 @@ rust_parser::parse_tuple_type ()
std::string type_name = type_to_string (types[i]);
if (i > 0)
- obstack_1grow (&obstack, ',');
+ obstack_grow_str (&obstack, ", ");
obstack_grow_str (&obstack, type_name.c_str ());
}