From: Florian Forster Date: Sun, 18 Jun 2006 14:55:24 +0000 (+0200) Subject: Don't use empty structure initializers. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=91df4330d35f1f1670dd04af0a14f1ca84a72b2b;p=git.git Don't use empty structure initializers. Empty initializers for structures are not allowed in ANSI C99. This patch removes such an initializer from `builtin-read-tree.c'. Since the struct was static (and is therefore implicitely initialized to zero anyway) it wasn't actually needed. --- diff --git a/builtin-read-tree.c b/builtin-read-tree.c index bb50fbd2..fdd67068 100644 --- a/builtin-read-tree.c +++ b/builtin-read-tree.c @@ -30,8 +30,7 @@ static int merge_size = 0; static struct object_list *trees = NULL; -static struct cache_entry df_conflict_entry = { -}; +static struct cache_entry df_conflict_entry; struct tree_entry_list { struct tree_entry_list *next;