From: Michael Beck Date: Wed, 15 Mar 2006 12:32:07 +0000 (+0000) Subject: Fixed initializer (remove warning) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=6d3f394d9eaa5ba80d658b12c9167088eb5093a4;p=libfirm Fixed initializer (remove warning) --- diff --git a/ir/be/firm/bearch_firm.c b/ir/be/firm/bearch_firm.c index d0427fc50..595a5439f 100644 --- a/ir/be/firm/bearch_firm.c +++ b/ir/be/firm/bearch_firm.c @@ -211,7 +211,7 @@ static void firm_get_call_abi(const void *self, ir_type *method_type, be_abi_cal be_abi_call_flags_t flags; const arch_register_class_t *cls = ®_classes[CLS_DATAB]; int i, n; - be_abi_call_flags_t call_flags = { 0, 0, 0, 0, 0 }; + be_abi_call_flags_t call_flags = { { 0, 0, 0, 0, 0 } }; if(!between_type) { between_type = new_type_class(new_id_from_str("firm_be_between"));