diff options
author | Andreas Schwab <schwab@suse.de> | 2003-03-18 12:16:10 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2003-03-18 12:16:10 +0000 |
commit | 94e001a9a9b38a592b446f6063ffc2da1b9877aa (patch) | |
tree | a175a7b62cc961eaa2689a04571cdb1ffb4d0936 /gcc/dwarf2out.c | |
parent | fddab7dc9b09a03abf7e066fdf88fbf00b2bab89 (diff) | |
download | gcc-94e001a9a9b38a592b446f6063ffc2da1b9877aa.zip gcc-94e001a9a9b38a592b446f6063ffc2da1b9877aa.tar.gz gcc-94e001a9a9b38a592b446f6063ffc2da1b9877aa.tar.bz2 |
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
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index fec07a7..f4f339e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -7487,7 +7487,7 @@ output_file_names () int dir_idx = dirs[files[file_idx].dir_idx].dir_idx; 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. */ dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL); |