diff options
Diffstat (limited to 'lib/base/filepush.cpp')
| -rw-r--r-- | lib/base/filepush.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index 645d3685..d43b6e1c 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) |
