You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
773 B
29 lines
773 B
6 years ago
|
From ee46a56bcf94e9dbfed76d5682597491f4a69a54 Mon Sep 17 00:00:00 2001
|
||
|
From: Andre McCurdy <armccurdy@gmail.com>
|
||
|
Date: Wed, 3 Feb 2016 18:05:41 -0800
|
||
|
Subject: [PATCH] avoid including <sys/poll.h> directly
|
||
|
|
||
|
musl libc generates warnings if <sys/poll.h> is included directly.
|
||
|
|
||
|
Upstream-Status: Pending
|
||
|
|
||
|
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
|
||
|
|
||
|
---
|
||
|
sys/dvb/gstdvbsrc.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c
|
||
|
index d9bee26..2edd9fa 100644
|
||
|
--- a/sys/dvb/gstdvbsrc.c
|
||
|
+++ b/sys/dvb/gstdvbsrc.c
|
||
|
@@ -97,7 +97,7 @@
|
||
|
#include <gst/gst.h>
|
||
|
#include <gst/glib-compat-private.h>
|
||
|
#include <sys/ioctl.h>
|
||
|
-#include <sys/poll.h>
|
||
|
+#include <poll.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <errno.h>
|
||
|
#include <stdio.h>
|