Commit 94e001a9 by Andreas Schwab Committed by Andreas Schwab

dwarf2out.c (output_file_names): Cast size_t to unsigned long for format.

	* dwarf2out.c (output_file_names): Cast size_t to unsigned long
	for format.

From-SVN: r64530
parent fddab7dc
2003-03-18 Andreas Schwab <schwab@suse.de>
* dwarf2out.c (output_file_names): Cast size_t to unsigned long
for format.
2003-03-17 Jason Merrill <jason@redhat.com> 2003-03-17 Jason Merrill <jason@redhat.com>
PR c++/10091 PR c++/10091
......
...@@ -7487,7 +7487,7 @@ output_file_names () ...@@ -7487,7 +7487,7 @@ output_file_names ()
int dir_idx = dirs[files[file_idx].dir_idx].dir_idx; int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1, dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
"File Entry: 0x%x", i); "File Entry: 0x%lx", (unsigned long) i);
/* Include directory index. */ /* Include directory index. */
dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL); dw2_asm_output_data_uleb128 (dirs[dir_idx].used, 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