From cd9f6cc9a0b18aa62d88448d04e7a163606167c4 Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 11 Jun 2009 16:56:52 +0200 Subject: [PATCH] fix compiler warning --- lib/base/filepush.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.7.4