1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

fix empty declaration warning

This commit is contained in:
Francois Cartegnie 2010-01-18 18:45:13 +01:00 committed by Rémi Denis-Courmont
parent 0a0db525cf
commit 9ae152ce22
5 changed files with 8 additions and 8 deletions

View File

@ -154,7 +154,7 @@ static inline int video_format_Copy( video_format_t *p_dst, const video_format_t
memcpy( p_dst->p_palette, p_src->p_palette, sizeof( *p_dst->p_palette ) );
}
return VLC_SUCCESS;
};
}
/**
* Cleanup and free palette of this video_format_t

View File

@ -265,7 +265,7 @@ typedef struct input_resource_t input_resource_t;
*/
struct input_thread_t
{
VLC_COMMON_MEMBERS;
VLC_COMMON_MEMBERS
bool b_eof;
bool b_preparsing;

View File

@ -26,7 +26,7 @@
* This file defines libvlc_int_t internal libvlc instance
*/
TYPEDEF_ARRAY(input_item_t*, input_item_array_t);
TYPEDEF_ARRAY(input_item_t*, input_item_array_t)
struct hotkey;

View File

@ -31,7 +31,7 @@ extern "C" {
#include <vlc_input.h>
#include <vlc_events.h>
TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t);
TYPEDEF_ARRAY(playlist_item_t*, playlist_item_array_t)
/**
* \file

View File

@ -50,7 +50,7 @@ char const * VLC_##func ( void ) \
return VLC_##var ; \
}
DECLARE_VLC_VERSION( CompileBy, COMPILE_BY );
DECLARE_VLC_VERSION( CompileHost, COMPILE_HOST );
DECLARE_VLC_VERSION( CompileDomain, COMPILE_DOMAIN );
DECLARE_VLC_VERSION( Compiler, COMPILER );
DECLARE_VLC_VERSION( CompileBy, COMPILE_BY )
DECLARE_VLC_VERSION( CompileHost, COMPILE_HOST )
DECLARE_VLC_VERSION( CompileDomain, COMPILE_DOMAIN )
DECLARE_VLC_VERSION( Compiler, COMPILER )