]> git.sesse.net Git - vlc/commitdiff
Cosmetics.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 25 Aug 2008 18:37:46 +0000 (20:37 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 25 Aug 2008 18:37:46 +0000 (20:37 +0200)
modules/services_discovery/upnp_intel.cpp

index 34b0636c44a88fad8d28982a23b8ff213a76e5a8..64633296e33faafbda035598d3653ee341c9cb83 100644 (file)
@@ -111,21 +111,15 @@ public:
         vlc_mutex_init( &_mutex );
     }
 
-    Lockable( Cookie* c )
-    {
-        Lockable();
-    }
-
     ~Lockable()
     {
-    vlc_mutex_destroy( &_mutex );
+        vlc_mutex_destroy( &_mutex );
     }
 
     void lock() { vlc_mutex_lock( &_mutex ); }
     void unlock() { vlc_mutex_unlock( &_mutex ); }
 
 private:
-
     vlc_mutex_t _mutex;
 };