From f67aab2c6f10056156a388a40d61efe2358aa70f Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Fri, 19 Jun 1998 23:52:13 +0000 Subject: c-common.c (check_format_info): Initialize length_char and fci to keep -Wall quiet. * c-common.c (check_format_info): Initialize length_char and fci to keep -Wall quiet. From-SVN: r20627 --- gcc/c-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/c-common.c') diff --git a/gcc/c-common.c b/gcc/c-common.c index 3a22c17..9a8d073 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1240,7 +1240,7 @@ check_format_info (info, params) int i; int arg_num; int suppressed, wide, precise; - int length_char; + int length_char = 0; int format_char; int format_length; tree format_tree; @@ -1249,7 +1249,7 @@ check_format_info (info, params) tree wanted_type; tree first_fillin_param; char *format_chars; - format_char_info *fci; + format_char_info *fci = NULL; char flag_chars[8]; int has_operand_number = 0; -- cgit v1.1