Commit 310e5399 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix comment and indentation.

parent 2b1a76ee
...@@ -1058,7 +1058,8 @@ static void End( intf_thread_t *p_intf ) ...@@ -1058,7 +1058,8 @@ static void End( intf_thread_t *p_intf )
if( p_sys->p_overlay ) if( p_sys->p_overlay )
{ {
int ret; int ret;
ret = write( p_sys->i_fd, p_sys->p_overlay->p[0].p_pixels, p_sys->i_page_size ); ret = write( p_sys->i_fd, p_sys->p_overlay->p[0].p_pixels,
p_sys->i_page_size );
if( ret < 0 ) if( ret < 0 )
msg_Err( p_intf, "unable to clear overlay" ); msg_Err( p_intf, "unable to clear overlay" );
} }
...@@ -1270,7 +1271,7 @@ static bool isRendererReady( intf_thread_t *p_intf ) ...@@ -1270,7 +1271,7 @@ static bool isRendererReady( intf_thread_t *p_intf )
} }
/***************************************************************************** /*****************************************************************************
* Run: rc thread * Run: thread
***************************************************************************** *****************************************************************************
* This part of the interface is in a separate thread so that we can call * This part of the interface is in a separate thread so that we can call
* exec() from within it without annoying the rest of the program. * exec() from within it without annoying the rest of the program.
......
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