added missing braces around initializer.

2004-11-16  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/jigsaw.c: added missing braces around initializer.
This commit is contained in:
Sven Neumann 2004-11-16 15:38:35 +00:00 committed by Sven Neumann
parent 8930833c57
commit ab3d24f1be
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-11-16 Sven Neumann <sven@gimp.org>
* plug-ins/common/jigsaw.c: added missing braces around initializer.
2004-11-16 Michael Natterer <mitch@gimp.org>
* tools/pdbgen/pdb/drawable_transform.pdb: renamed the new

View File

@ -336,7 +336,7 @@ struct globals_tag
typedef struct globals_tag globals_t;
static globals_t globals = { 0, };
static globals_t globals = { { 0 } };
MAIN ()