osd_work: small formating change (nw)

This commit is contained in:
Oliver Stöneberg 2015-01-07 16:43:11 +01:00
parent 143caa2616
commit 7dd9bd50d8

View File

@ -651,9 +651,9 @@ static void *worker_thread_entry(void *param)
work_thread_info *thread = (work_thread_info *)param; work_thread_info *thread = (work_thread_info *)param;
osd_work_queue *queue = thread->queue; osd_work_queue *queue = thread->queue;
#if defined(SDLMAME_MACOSX) #if defined(SDLMAME_MACOSX)
void *arp = NewAutoreleasePool(); void *arp = NewAutoreleasePool();
#endif #endif
// loop until we exit // loop until we exit
for ( ;; ) for ( ;; )
@ -703,9 +703,9 @@ static void *worker_thread_entry(void *param)
atomic_decrement32(&queue->livethreads); atomic_decrement32(&queue->livethreads);
} }
#if defined(SDLMAME_MACOSX) #if defined(SDLMAME_MACOSX)
ReleaseAutoreleasePool(arp); ReleaseAutoreleasePool(arp);
#endif #endif
return NULL; return NULL;
} }