| Index: chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| index c6b8680f79a52e13e3f8b68d45a26c0ed874381c..ce212642dbf877362254e1aa0179b06ea0048848 100644
|
| --- a/chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| +++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc
|
| @@ -2689,8 +2689,8 @@ int CountryCharsToCountryIDWithUpdate(char c1, char c2) {
|
| // ISO 'YU' and Serbia and Montenegro were ISO 'CS'. Serbia was subsequently
|
| // issued 'RS' and Montenegro 'ME'. Windows XP and Mac OS X Leopard still use
|
| // the value 'YU'. If we get a value of 'YU' or 'CS' we will map it to 'RS'.
|
| - if (c1 == 'Y' && c2 == 'U' ||
|
| - c1 == 'C' && c2 == 'S') {
|
| + if ((c1 == 'Y' && c2 == 'U') ||
|
| + (c1 == 'C' && c2 == 'S')) {
|
| c1 = 'R';
|
| c2 = 'S';
|
| }
|
|
|