summaryrefslogtreecommitdiff
path: root/src/post/goom/ifs.c
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2006-05-22 16:57:36 +0000
committerMatthias Hopf <mat@mshopf.de>2006-05-22 16:57:36 +0000
commite25e5998d1e8a3ffb3417a0effe1b7ce5999bbb5 (patch)
tree7e967eafae36f65784c930c30d25ae2c3821a2a2 /src/post/goom/ifs.c
parent2bb7dbae2dc7e959d2ac5d416431bfed7201c51a (diff)
downloadxine-lib-e25e5998d1e8a3ffb3417a0effe1b7ce5999bbb5.tar.gz
xine-lib-e25e5998d1e8a3ffb3417a0effe1b7ce5999bbb5.tar.bz2
Fixed gcc warnings (Adrian Schroeter).
CVS patchset: 7993 CVS date: 2006/05/22 16:57:36
Diffstat (limited to 'src/post/goom/ifs.c')
-rw-r--r--src/post/goom/ifs.c2
1 files changed, 1 insertions, 1 deletions
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;