From 5497f9762aafdfb047e985fd14e29714007141ad Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 22 Feb 2000 07:21:23 +0000 Subject: From Brad Lucier : * dwarf2dbg.c (print_stats): Add cast to force printf argument to match format. --- gas/dwarf2dbg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gas/dwarf2dbg.c') diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index e735592e73..b83175ac40 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -1,5 +1,5 @@ /* dwarf2dbg.c - DWARF2 debug support - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. Contributed by David Mosberger-Tang This file is part of GAS, the GNU Assembler. @@ -639,7 +639,8 @@ print_stats (total_size) j = SPECIAL_LINE (i); if (j == DWARF2_LINE_BASE) fprintf (stderr, "\n%4u: ", - DWARF2_LINE_MIN_INSN_LENGTH*SPECIAL_ADDR (i)); + ((unsigned int) + DWARF2_LINE_MIN_INSN_LENGTH * SPECIAL_ADDR (i))); fprintf (stderr, " %2u", ls.opcode_hist[i]); } fprintf (stderr, "\n"); -- cgit v1.2.1