[vlc-devel] commit: OMX IL: clean up dll_* macros ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Feb 20 16:21:09 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Feb 20 17:20:46 2010 +0200| [38a58dec25baaf1a3b3588c6172834fa57825ac1] | committer: Rémi Denis-Courmont 

OMX IL: clean up dll_* macros

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

 modules/codec/omxil/omxil.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/codec/omxil/omxil.c b/modules/codec/omxil/omxil.c
index f3b6553..05f490e 100644
--- a/modules/codec/omxil/omxil.c
+++ b/modules/codec/omxil/omxil.c
@@ -57,11 +57,11 @@ static const char *ppsz_dll_list[] =
  * defines
  *****************************************************************************/
 #if defined(HAVE_DL_DLOPEN)
-# define dll_open(name) dlopen( name, RTLD_NOW );
-# define dll_close(handle) dlclose(handle);
+# define dll_open(name) dlopen( name, RTLD_NOW )
+# define dll_close(handle) dlclose(handle)
 #else
-# define dll_open(name) NULL
-# define dll_close(handle)
+# define dll_open(name) (NULL)
+# define dll_close(handle) (void)0
 #endif
 
 /*****************************************************************************




More information about the vlc-devel mailing list