Fix spacing

This commit is contained in:
cnlohr 2018-05-21 12:52:19 -04:00
parent d15f18113b
commit 5acd811a83

View file

@ -29,7 +29,7 @@ struct FileWriteDriver
int asynchronous; int asynchronous;
uint32_t pass_buffer[MAX_LEDS]; uint32_t pass_buffer[MAX_LEDS];
og_thread_t rt_thread; og_thread_t rt_thread;
og_sema_t rt_sema; og_sema_t rt_sema;
}; };
static void * LightsWrite( void * v ) static void * LightsWrite( void * v )
@ -37,7 +37,7 @@ static void * LightsWrite( void * v )
struct FileWriteDriver * d = (struct FileWriteDriver *)v; struct FileWriteDriver * d = (struct FileWriteDriver *)v;
while(1) while(1)
{ {
OGLockSema( d->rt_sema ); OGLockSema( d->rt_sema );
if( d->lights_file > 0 ) if( d->lights_file > 0 )
{ {
int btos = ((d->inflate_to_u32)?4:3)*d->total_leds; int btos = ((d->inflate_to_u32)?4:3)*d->total_leds;