]> git.sesse.net Git - vlc/blobdiff - src/misc/cpu.c
Replace vlc_bool_t by bool, VLC_TRUE by true and VLC_FALSE by false.
[vlc] / src / misc / cpu.c
index 2e0b218a0d1a119a4fabb4ba3aea399541f842db..cfd5b285e8eb4bc95b78e1bd87ba0231234fa523 100644 (file)
@@ -85,7 +85,7 @@ uint32_t CPUCapabilities( void )
 
 #elif defined( __i386__ ) || defined( __x86_64__ )
     volatile unsigned int  i_eax, i_ebx, i_ecx, i_edx;
-    volatile vlc_bool_t    b_amd;
+    volatile bool    b_amd;
 
     /* Needed for x86 CPU capabilities detection */
 #   if defined( __x86_64__ )