[vlc-devel] commit: Adds missing assert.h header ( Rafaël Carré )

git version control git at videolan.org
Mon May 26 18:32:34 CEST 2008


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Mon May 26 18:34:09 2008 +0200| [b3892a3a52e224a6a2c8507119cab4958144257c]

Adds missing assert.h header

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

 src/config/intf.c                |    2 ++
 src/interface/interaction.c      |    2 ++
 src/libvlc-common.c              |    2 ++
 src/video_output/vout_pictures.c |    2 ++
 4 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/config/intf.c b/src/config/intf.c
index 6edb072..6ce970c 100644
--- a/src/config/intf.c
+++ b/src/config/intf.c
@@ -27,6 +27,8 @@
 
 #include <vlc/vlc.h>
 
+#include <assert.h>
+
 /* Adds an extra interface to the configuration */
 void __config_AddIntf( vlc_object_t *p_this, const char *psz_intf )
 {
diff --git a/src/interface/interaction.c b/src/interface/interaction.c
index e5ecbf9..4068f91 100644
--- a/src/interface/interaction.c
+++ b/src/interface/interaction.c
@@ -40,6 +40,8 @@
 #include <vlc_interface.h>
 #include "interface.h"
 
+#include <assert.h>
+
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
diff --git a/src/libvlc-common.c b/src/libvlc-common.c
index 36cd199..ddee077 100644
--- a/src/libvlc-common.c
+++ b/src/libvlc-common.c
@@ -95,6 +95,8 @@
 
 #include <vlc_vlm.h>
 
+#include <assert.h>
+
 /*****************************************************************************
  * The evil global variables. We handle them with care, don't worry.
  *****************************************************************************/
diff --git a/src/video_output/vout_pictures.c b/src/video_output/vout_pictures.c
index 22fc913..3a89686 100644
--- a/src/video_output/vout_pictures.c
+++ b/src/video_output/vout_pictures.c
@@ -35,6 +35,8 @@
 #include <vlc_osd.h>
 #include "vout_pictures.h"
 
+#include <assert.h>
+
 /**
  * Display a picture
  *




More information about the vlc-devel mailing list