summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/contacts
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-02 14:10:45 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-02 14:10:45 +0000
commitecc3d2624875a250e897f425d5b493c89911aa33 (patch)
treefaf0f83882d74512c9cfc08d8fa355f115d72a5c /chrome/browser/chromeos/contacts
parent74050272ce9c44052c55eca09a7567a2aa390633 (diff)
downloadchromium_src-ecc3d2624875a250e897f425d5b493c89911aa33.zip
chromium_src-ecc3d2624875a250e897f425d5b493c89911aa33.tar.gz
chromium_src-ecc3d2624875a250e897f425d5b493c89911aa33.tar.bz2
fix -Wlogical-not-parentheses warnings of new clang on android and cros
BUG=255201 R=derat@chromium.org, pliard@google.com Review URL: https://codereview.chromium.org/18150003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/contacts')
-rw-r--r--chrome/browser/chromeos/contacts/gdata_contacts_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/contacts/gdata_contacts_service.cc b/chrome/browser/chromeos/contacts/gdata_contacts_service.cc
index 434c872..12e4161 100644
--- a/chrome/browser/chromeos/contacts/gdata_contacts_service.cc
+++ b/chrome/browser/chromeos/contacts/gdata_contacts_service.cc
@@ -645,7 +645,7 @@ class GDataContactsService::DownloadContactsRequest {
return false;
}
const DictionaryValue* category_dict = NULL;
- if (!category_list->GetSize() == 1 ||
+ if (category_list->GetSize() != 1 ||
!category_list->GetDictionary(0, &category_dict)) {
LOG(WARNING) << "Unable to get dictionary from category list of size "
<< category_list->GetSize();