[vlc-commits] access_out: srt: fix missing config.h include

Thomas Guillem git at videolan.org
Wed Mar 20 15:44:24 CET 2019


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Mar 20 15:43:44 2019 +0100| [e7e608e84e9e218886700a6c90e8788a01f46b4f] | committer: Thomas Guillem

access_out: srt: fix missing config.h include

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e7e608e84e9e218886700a6c90e8788a01f46b4f
---

 modules/access_output/srt.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/access_output/srt.c b/modules/access_output/srt.c
index 5b23f6c994..d772a48843 100644
--- a/modules/access_output/srt.c
+++ b/modules/access_output/srt.c
@@ -21,7 +21,9 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
-#include <vlc_common.h>
+
+#include <srt_common.h>
+
 #include <vlc_interrupt.h>
 #include <vlc_fs.h>
 #include <vlc_plugin.h>
@@ -29,8 +31,6 @@
 #include <vlc_block.h>
 #include <vlc_network.h>
 
-#include <srt_common.h>
-
 typedef struct
 {
     SRTSOCKET     sock;



More information about the vlc-commits mailing list