[vlc-commits] langfromtelx: config.h must be included first
Rémi Denis-Courmont
git at videolan.org
Fri Jan 27 22:31:55 CET 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Jan 27 22:56:09 2012 +0200| [eb98fb5812784713b75de29fcf17618f3e75eb51] | committer: Rémi Denis-Courmont
langfromtelx: config.h must be included first
This fixes the Windows version definition.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eb98fb5812784713b75de29fcf17618f3e75eb51
---
modules/stream_out/langfromtelx.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/stream_out/langfromtelx.c b/modules/stream_out/langfromtelx.c
index f6129c0..4e6c78f 100644
--- a/modules/stream_out/langfromtelx.c
+++ b/modules/stream_out/langfromtelx.c
@@ -24,12 +24,12 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
-#include <ctype.h>
-
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
+#include <ctype.h>
+
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_sout.h>
More information about the vlc-commits
mailing list