Commit 3817707e by Jakub Jelinek Committed by Jakub Jelinek

gcc.c (version_compare_spec_function): Use '%s' rather than %qs in fatal format string.

	* gcc.c (version_compare_spec_function): Use '%s' rather than %qs in
	fatal format string.

From-SVN: r107226
parent 452b5b1e
2005-11-19 Jakub Jelinek <jakub@redhat.com>
* gcc.c (version_compare_spec_function): Use '%s' rather than %qs in
fatal format string.
2005-11-19 Joseph S. Myers <joseph@codesourcery.com>
* combine.c (make_compound_operation): Swap operands of
......
......@@ -7745,7 +7745,7 @@ version_compare_spec_function (int argc, const char **argv)
break;
default:
fatal ("unknown operator %qs in %%:version-compare", argv[0]);
fatal ("unknown operator '%s' in %%:version-compare", argv[0]);
}
if (! result)
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment