From e25e5998d1e8a3ffb3417a0effe1b7ce5999bbb5 Mon Sep 17 00:00:00 2001 From: Matthias Hopf Date: Mon, 22 May 2006 16:57:36 +0000 Subject: Fixed gcc warnings (Adrian Schroeter). CVS patchset: 7993 CVS date: 2006/05/22 16:57:36 --- src/post/goom/filters.c | 2 +- src/post/goom/ifs.c | 2 +- src/post/goom/tentacle3d.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/post') diff --git a/src/post/goom/filters.c b/src/post/goom/filters.c index 26cb0e54c..1c4714b2f 100644 --- a/src/post/goom/filters.c +++ b/src/post/goom/filters.c @@ -740,7 +740,7 @@ static void zoomFilterVisualFXWrapper_apply (struct _VISUAL_FX *_this, Pixel *sr VisualFX zoomFilterVisualFXWrapper_create(void) { - VisualFX fx; + VisualFX fx = {0}; fx.init = zoomFilterVisualFXWrapper_init; fx.free = zoomFilterVisualFXWrapper_free; fx.apply = zoomFilterVisualFXWrapper_apply; diff --git a/src/post/goom/ifs.c b/src/post/goom/ifs.c index c51faae8b..af84b777b 100644 --- a/src/post/goom/ifs.c +++ b/src/post/goom/ifs.c @@ -762,7 +762,7 @@ static void ifs_vfx_free(VisualFX *_this) { } VisualFX ifs_visualfx_create(void) { - VisualFX vfx; + VisualFX vfx = {0}; vfx.init = ifs_vfx_init; vfx.free = ifs_vfx_free; vfx.apply = ifs_vfx_apply; diff --git a/src/post/goom/tentacle3d.c b/src/post/goom/tentacle3d.c index bfe73ae13..e1e2157e7 100755 --- a/src/post/goom/tentacle3d.c +++ b/src/post/goom/tentacle3d.c @@ -95,7 +95,7 @@ static void tentacle_fx_free(VisualFX *_this) { } VisualFX tentacle_fx_create(void) { - VisualFX fx; + VisualFX fx = {0}; fx.init = tentacle_fx_init; fx.apply = tentacle_fx_apply; fx.free = tentacle_fx_free; -- cgit v1.2.3