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. Signed-off-by: Florian Forster <octo@xxxxxxxxxxxx> --- builtin-read-tree.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) 91df4330d35f1f1670dd04af0a14f1ca84a72b2b diff --git a/builtin-read-tree.c b/builtin-read-tree.c index bb50fbd..fdd6706 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; -- 1.3.3 - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html