]> git.sesse.net Git - vlc/commitdiff
Fix compile if you don't have localtime_r (Win32 for ex)
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Aug 2009 18:37:31 +0000 (20:37 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 20 Aug 2009 18:38:03 +0000 (20:38 +0200)
src/input/item.c

index 903e537b3fc18504b5b1f1766dbbd6c8fd07b3cf..70f5a7d6d0970f49822e739ca2a2f8b0924232ac 100644 (file)
@@ -748,6 +748,8 @@ void input_item_SetEpg( input_item_t *p_item,
         event.type = vlc_InputItemInfoChanged;
         vlc_event_send( &p_item->event_manager, &event );
     }
+#else
+    VLC_UNUSED( p_epg );
 #endif
 }