summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Lampard <mlampard@users.sourceforge.net>2004-10-21 15:17:25 +0000
committerMike Lampard <mlampard@users.sourceforge.net>2004-10-21 15:17:25 +0000
commit294856add737cce10101c5820730fdf08aa76312 (patch)
treef7afd691dbde37248f0889ce56e89387b72de74b
parentcbdf9bd89c7ccee5f7bdd47013e584325dd9edf0 (diff)
downloadxine-lib-294856add737cce10101c5820730fdf08aa76312.tar.gz
xine-lib-294856add737cce10101c5820730fdf08aa76312.tar.bz2
fix build problem due to misaligned patch
CVS patchset: 7062 CVS date: 2004/10/21 15:17:25
-rw-r--r--src/input/input_dvb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c
index df656c107..d089db022 100644
--- a/src/input/input_dvb.c
+++ b/src/input/input_dvb.c
@@ -909,10 +909,11 @@ static void do_eit(dvb_input_plugin_t *this)
int running_status=0;
struct pollfd fd;
foo=malloc(8192);
- memset(foo,0,8192);
char *buffer;
int loops;
int current_channel;
+ memset(foo,0,8192);
+
fd.fd = this->tuner->fd_pidfilter[EITFILTER];
fd.events = POLLPRI;