Commit 74e99b37 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing vlc_savecancel()

parent ff283ead
...@@ -172,7 +172,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -172,7 +172,7 @@ static void Run( intf_thread_t *p_intf )
#endif #endif
for( ;; ) for( ;; )
{ {
vlc_object_t *p_vout; vlc_object_t *p_vout;
p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE ); p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
...@@ -211,6 +211,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -211,6 +211,7 @@ static void Run( intf_thread_t *p_intf )
vlc_restorecancel( canc ); vlc_restorecancel( canc );
/* Check screensaver every 30 seconds */ /* Check screensaver every 30 seconds */
msleep( 30 * CLOCK_FREQ ); msleep( 30 * CLOCK_FREQ );
canc = vlc_savecancel( );
} }
} }
......
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