Commit c7d6aad6 authored by Rémi Duraffort's avatar Rémi Duraffort

upnpn_intel: Compilation fix.

parent bebc7751
......@@ -88,6 +88,7 @@ class MediaServer;
class MediaServerList;
class Item;
class Container;
class Lockable;
// Cookie that is passed to the callback
......@@ -105,10 +106,14 @@ typedef struct
class Lockable
{
public:
Lockable()
{
vlc_mutex_init( &_mutex );
}
Lockable( Cookie* c )
{
vlc_mutex_init( &_mutex );
Lockable();
}
~Lockable()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment