Fix conditional compilation typo.

pull/116/head
Jonathan Moore Liles 2013-08-27 23:02:52 -07:00
parent f8f6bad322
commit 89f62c13a4
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ namespace JACK
void
Client::thread_init ( void *arg )
{
#if __SSE2_MATH__
#ifdef __SSE2_MATH__
/* set FTZ and DAZ flags */
_mm_setcsr(_mm_getcsr() | 0x8040);
#endif