From 99515c66b8175da424071cc7a3095e3685ec993b Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 14 Feb 2015 18:03:35 -0500 Subject: [PATCH] Pulse: use #elif instead of #if. If this causes any changes in generated assembly... well, we'd have bigger problems if __POWERPC__ and __INTEL__ were both defined. --- src/apps/pulse/NormalPulseView.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apps/pulse/NormalPulseView.cpp b/src/apps/pulse/NormalPulseView.cpp index c23dd24b69..0d71fd93a0 100644 --- a/src/apps/pulse/NormalPulseView.cpp +++ b/src/apps/pulse/NormalPulseView.cpp @@ -127,8 +127,7 @@ NormalPulseView::DetermineVendorAndProcessor() #if __POWERPC__ logo = PowerPCLogo; -#endif -#if __INTEL__ +#elif __INTEL__ uint32 topologyNodeCount = 0; cpu_topology_node_info* topology = NULL;