diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 22:38:22 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 22:38:22 +0000 |
commit | ec39287014cd3cc5469ae88f027a7b1f082599aa (patch) | |
tree | f4061f0e0c51647b4b6aa305574181345da26df5 /build | |
parent | 0f42477a45fb4fb6714a9c872f9ed37639c62852 (diff) | |
download | chromium_src-ec39287014cd3cc5469ae88f027a7b1f082599aa.zip chromium_src-ec39287014cd3cc5469ae88f027a7b1f082599aa.tar.gz chromium_src-ec39287014cd3cc5469ae88f027a7b1f082599aa.tar.bz2 |
linux: switch to -Wno-format
Semantically it's the same as -Wformat=0, but Clang only accepts
this new one. (A bug has been filed with Clang.)
Review URL: http://codereview.chromium.org/6489009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 4bc125c..73a57d9 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -679,7 +679,7 @@ '-Wno-deprecated', # Don't warn about printf format problems. # This is off by default in gcc but on in Ubuntu's gcc(!). - '-Wformat=0', + '-Wno-format', ], }], [ 'OS=="win"', { |