From: Bruno Larsen Date: Thu, 10 Nov 2022 16:58:58 +0000 (+0100) Subject: gdb: Fix regressions caused by 041de3d73aa121f2ff0c077213598963bfb34b79 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=05e8d17b8b49065a104277f4df6bfe5e72e83862;p=binutils-gdb.git gdb: Fix regressions caused by 041de3d73aa121f2ff0c077213598963bfb34b79 Commit 041de3d73aa changed the output format of all error messages when GDB couldn't determine a compatible overload for a given function, but it was only supposed to change if the failure happened due to incomplete types. This commit removes the stray . that was added --- diff --git a/gdb/valops.c b/gdb/valops.c index 2b789cd76f4..e90c3947b8d 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -2979,12 +2979,12 @@ find_overload_match (gdb::array_view args, { std::string hint = incomplete_type_hint (args); if (method == METHOD) - error (_("Cannot resolve method %s%s%s to any overloaded instance.%s"), + error (_("Cannot resolve method %s%s%s to any overloaded instance%s"), obj_type_name, (obj_type_name && *obj_type_name) ? "::" : "", name, hint.c_str ()); else - error (_("Cannot resolve function %s to any overloaded instance.%s"), + error (_("Cannot resolve function %s to any overloaded instance%s"), func_name, hint.c_str ()); } else if (match_quality == NON_STANDARD)