vlc | branch: master | Steve Lhomme <[email protected]> | Mon Jul 15 11:16:45 2019 +0200| [6f2c75b31245006b3246fdaaddb11d82624a9afd] | committer: Steve Lhomme
access: rtp: fix local include pathes > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6f2c75b31245006b3246fdaaddb11d82624a9afd --- modules/access/rtp/input.c | 2 +- modules/access/rtp/rtp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/access/rtp/input.c b/modules/access/rtp/input.c index 4ab2cdcb2f..b1fb708b13 100644 --- a/modules/access/rtp/input.c +++ b/modules/access/rtp/input.c @@ -41,7 +41,7 @@ #include "rtp.h" #ifdef HAVE_SRTP -# include <srtp.h> +# include "srtp.h" #endif #define DEFAULT_MRU (1500u - (20 + 8)) diff --git a/modules/access/rtp/rtp.c b/modules/access/rtp/rtp.c index fc41e73df2..1126801cad 100644 --- a/modules/access/rtp/rtp.c +++ b/modules/access/rtp/rtp.c @@ -36,7 +36,7 @@ #include "rtp.h" #ifdef HAVE_SRTP -# include <srtp.h> +# include "srtp.h" # include <gcrypt.h> # include <vlc_gcrypt.h> #endif _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
