comparison cpudetect.c @ 24664:39b8a38f02b8

Fix warning: cpudetect.c: In function 'check_os_katmai_support': cpudetect.c:395: warning: unused variable 'saved_sigfpe'
author diego
date Mon, 01 Oct 2007 22:48:39 +0000
parents bfcf6b2e62d6
children 676e2ace8a46
comparison
equal deleted inserted replaced
24663:f5610b142363 24664:39b8a38f02b8
390 else mp_msg(MSGT_CPUDETECT,MSGL_V, "no!\n" ); 390 else mp_msg(MSGT_CPUDETECT,MSGL_V, "no!\n" );
391 } 391 }
392 #elif defined(__linux__) 392 #elif defined(__linux__)
393 #if defined(_POSIX_SOURCE) 393 #if defined(_POSIX_SOURCE)
394 struct sigaction saved_sigill; 394 struct sigaction saved_sigill;
395 struct sigaction saved_sigfpe;
396 395
397 /* Save the original signal handlers. 396 /* Save the original signal handlers.
398 */ 397 */
399 sigaction( SIGILL, NULL, &saved_sigill ); 398 sigaction( SIGILL, NULL, &saved_sigill );
400 399