From: ghost Date: Thu, 11 Jun 2009 14:56:52 +0000 (+0200) Subject: fix compiler warning X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=cd9f6cc9a0b18aa62d88448d04e7a163606167c4 fix compiler warning --- diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index 645d368..d43b6e1 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -190,8 +190,10 @@ void eFilePushThread::thread() { eDebug("sending PVR commit"); - struct pollfd pfd[1] = {m_fd_dest, POLLHUP}; - poll(pfd, 1, 10000); + struct pollfd pfd; + pfd.fd = m_fd_dest; + pfd.events = POLLHUP; + poll(&pfd, 1, 10000); sleep(5); /* HACK to allow ES buffer to drain */ already_empty = 1; // if (::ioctl(m_fd_dest, PVR_COMMIT) < 0 && errno == EINTR)