Don't use empty structure initializers.
commit571ea603a6464cab86dad2d470034e0f3b6e67df
authorFlorian Forster <octo@verplant.org>
Sun, 18 Jun 2006 15:18:07 +0000 (18 17:18 +0200)
committerJunio C Hamano <junkio@cox.net>
Mon, 19 Jun 2006 04:19:10 +0000 (18 21:19 -0700)
tree887c8dc82ceb23b7ad1fe5c081418cbdc81067e7
parent04f086071e780d921f6dac83b5ffc21c3a2d7bb6
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.

Signed-off-by: Florian Forster <octo@verplant.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-read-tree.c