Fixed a style violation that I missed, thanks Axel.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33463 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-10-06 12:26:06 +00:00
parent b2e0606edc
commit 8ee28a00be
1 changed files with 2 additions and 2 deletions

View File

@ -184,8 +184,8 @@ get_cpu_model_string(system_info *info)
return "Core 2"; return "Core 2";
case B_CPU_INTEL_PENTIUM_CORE_2_45_NM: case B_CPU_INTEL_PENTIUM_CORE_2_45_NM:
get_cpuid_model_string(cpuidName); get_cpuid_model_string(cpuidName);
if (strcasestr(cpuidName, "Duo") != NULL || if (strcasestr(cpuidName, "Duo") != NULL
strcasestr(cpuidName, "Quad") != NULL) || strcasestr(cpuidName, "Quad") != NULL)
return "Core 2"; return "Core 2";
if (strcasestr(cpuidName, "Xeon") != NULL) if (strcasestr(cpuidName, "Xeon") != NULL)
return "Core 2 Xeon"; return "Core 2 Xeon";