Strip leading spaces from processor names.

patch by Sergey, sergemp mail ru


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22213 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-02-13 00:47:09 +00:00
parent af0412def4
commit 84f2ef32d0
1 changed files with 3 additions and 0 deletions

View File

@ -144,6 +144,9 @@ main(int argc, char **argv)
}
processor_name[48] = 0;
model_name = processor_name;
while (*model_name == ' ') {
model_name++;
}
}
} else {
amd_flags = 0;