Commit 1d42e1b7 by Richard Stallman

(__bb_exit_func): Fix format %*d -> %*ld.

From-SVN: r6145
parent 5bb92565
......@@ -1514,7 +1514,7 @@ __bb_exit_func (void)
(ptr->functions[i]) ? ptr->functions[i] : "<none>");
if (line_p)
fprintf (file, " line= %*d", line_len, ptr->line_nums[i]);
fprintf (file, " line= %*ld", line_len, ptr->line_nums[i]);
if (file_p)
fprintf (file, " file= %s",
......
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