Commit c2885517 by Tristan Gingold

vms-ld.c (main): Fix IDENTIFICATION padding.

2012-02-21  Tristan Gingold  <gingold@adacore.com>

	* config/vms/vms-ld.c (main): Fix IDENTIFICATION padding.

From-SVN: r184426
parent 3ed27cf5
......@@ -640,7 +640,7 @@ main (int argc, char **argv)
{
/* Comes from pragma Ident (). */
fprintf (optfile, "case_sensitive=yes\n");
fprintf (optfile, "IDENTIFICATION=\"%15.15s\"\n", &argv[i][17]);
fprintf (optfile, "IDENTIFICATION=\"%-.15s\"\n", &argv[i][17]);
fprintf (optfile, "case_sensitive=NO\n");
}
}
......
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