diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 23:52:13 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-19 23:52:13 +0000 |
commit | 6c00ca1e9f4fda27b883523514dbd05e1b35b44a (patch) | |
tree | 2818ff05576a14c948404dc72c1c1c63779bfdbe /gcc/c-common.c | |
parent | be582769a631df6abc692b1c476fefa4caca4155 (diff) | |
download | gcc-6c00ca1e9f4fda27b883523514dbd05e1b35b44a.tar.gz |
* c-common.c (check_format_info): Initialize length_char and
fci to keep -Wall quiet.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20627 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 3a22c174180..9a8d0731bdd 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; |