CVS Commit: vlc

Samuel Hocevar sam at zoy.org
Thu Aug 1 12:04:48 CEST 2002


On Thu, Aug 01, 2002, Tony Castley wrote:
> BeOS.  Now the beos.cpp file fails on the "add_submodule();" function 
> with the following error.
> 
> ANSI C++ forbids implicit conversion from `void *' in assignment 

   Grrr, damn C++ :) This one is in include/modules_inner.h:190,
replace:

    p_submodule = vlc_object_create( p_module, VLC_OBJECT_MODULE );

   with:

    p_submodule = (module_t *)vlc_object_create( p_module, VLC_OBJECT_MODULE );

-- 
Sam.

-- 
This is the vlc-devel mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://www.videolan.org/lists.html
If you are in trouble, please contact <postmaster at videolan.org>



More information about the vlc-devel mailing list