From patchwork Mon Jan 14 17:24:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carl Eugen Hoyos X-Patchwork-Id: 11745 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id B394144D18D for ; Mon, 14 Jan 2019 19:24:09 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C73D168A8A7; Mon, 14 Jan 2019 19:23:57 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-io1-f65.google.com (mail-io1-f65.google.com [209.85.166.65]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6D8F0689CC2 for ; Mon, 14 Jan 2019 19:23:51 +0200 (EET) Received: by mail-io1-f65.google.com with SMTP id b16so18281858ior.1 for ; Mon, 14 Jan 2019 09:24:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=28EAKo0HGi7p7/YQYkrIbmylJmgjOKkMwVvRnCz2I9g=; b=R4Seuq14pRppz3Sr9//f2wcF4I1tAd/xsiVGWvbAEJMhWJ46PZCvmvrM33OxgpWA0h GxvnFqQ7raiuLVCEOD7yYkXdNSq15aW8id78ARoIk/IpqGeDCQub07uGJ1kkmaCaeBxa /haCLWAYeo85ifrQTPBp6aMRDPRL7gogRvddZaPpHvCR3ApO253AmuDaUagvIOregHcN GTLPtPSC+/SUPadrtmeKOBiTO/KIr5RhenZ9aXxCoasAWxMQogASTIiT0vcccgS3/821 8ai28yd+WXLX951qY9oJr9Z4Q1xdqpX6UQ+Xe1dqZRA9MVz28vcFnaPxhA3lkWnDpUPv Hwhw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=28EAKo0HGi7p7/YQYkrIbmylJmgjOKkMwVvRnCz2I9g=; b=T+abu/VMiaV5SEEUsEoYqYH2ZUOFaTlH4RMRMqGo+c1E2khN4VGqolEL+e5i2NLgw2 mWB5mI4plKIXAKmPyy55+2qEMHeOtdAN14XCwFtXeiBBA1ESBmbbxBtL0DbjQzSPdGQq vCBVPKWnh/SwpKbL+VvqvfoqDYD+g9rzezJFn77JhvrKQKb/hQLeBVfrR4saBCEhtWqD vGnlc2MOoessfJBM9c000xSdjPJHOmftpg4SLCm2LKAHkEoFY9+QKEs1W4dP66p57hx+ 50YAPUNJw04Rim0XjcG+/E2Hr38blWg+SobY9+ftK3dkHZHivb7jBlGB+yMt1Hx/GOxG DzSw== X-Gm-Message-State: AJcUukfqWQr6JkE6VWy5FLZ4rw3uzB9xrPQU7kOFiQlya/zVHlbaMIZ7 HjDv/1qcdhffRmoI9L7eBgL58UyIC4924tg7V8pR4w== X-Google-Smtp-Source: ALg8bN47OpCN8gLVzR5kUQUSbQkO8bEUzvgI7TB3uPgGuGZn3adSAWc7HNCqdltQbucTnJgCDJxNgJDJIoMCA/3unrA= X-Received: by 2002:a5d:9405:: with SMTP id v5mr17590978ion.250.1547486643897; Mon, 14 Jan 2019 09:24:03 -0800 (PST) MIME-Version: 1.0 Received: by 2002:a02:5f11:0:0:0:0:0 with HTTP; Mon, 14 Jan 2019 09:24:03 -0800 (PST) From: Carl Eugen Hoyos Date: Mon, 14 Jan 2019 18:24:03 +0100 Message-ID: To: FFmpeg development discussions and patches Subject: [FFmpeg-devel] [PATCH]lavf/rtpproto: Use correct path when including poll.h X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Hi! Attached patch fixes a warning when compiling with musl. Please comment, Carl Eugen From 91aabded879973cd266988790e894fe687c69a0d Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 14 Jan 2019 18:21:15 +0100 Subject: [PATCH] lavf/rtpproto: Use the correct patch when including poll.h Fixes a warning using musl: In file included from libavformat/rtpproto.c:43:0: /usr/local/musl/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include to --- libavformat/rtpproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index e706300..1f0a82a 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -40,7 +40,7 @@ #include "os_support.h" #include #if HAVE_POLL_H -#include +#include #endif typedef struct RTPContext { -- 1.7.10.4