# HG changeset patch # User diego # Date 1171327629 0 # Node ID a6ce3c830723d9d9f68b15133759a43427a61124 # Parent 11704b3475a640ffc2676e7f823b57cd3ba611c1 Strip leading spaces from processor names. patch by Sergey, sergemp mail ru diff -r 11704b3475a6 -r a6ce3c830723 TOOLS/cpuinfo.c --- a/TOOLS/cpuinfo.c Mon Feb 12 21:52:53 2007 +0000 +++ b/TOOLS/cpuinfo.c Tue Feb 13 00:47:09 2007 +0000 @@ -144,6 +144,9 @@ } processor_name[48] = 0; model_name = processor_name; + while (*model_name == ' ') { + model_name++; + } } } else { amd_flags = 0;