fix compiler warning
authorghost <andreas.monzner@multimedia-labs.de>
Thu, 11 Jun 2009 14:56:52 +0000 (16:56 +0200)
committerghost <andreas.monzner@multimedia-labs.de>
Thu, 11 Jun 2009 14:56:52 +0000 (16:56 +0200)
lib/base/filepush.cpp

index 645d368..d43b6e1 100644 (file)
@@ -190,8 +190,10 @@ void eFilePushThread::thread()
                        {
                                eDebug("sending PVR commit");
                                
                        {
                                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)
                                sleep(5); /* HACK to allow ES buffer to drain */
                                already_empty = 1;
 //                             if (::ioctl(m_fd_dest, PVR_COMMIT) < 0 && errno == EINTR)