diff options
author | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-09 21:23:43 +0000 |
---|---|---|
committer | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-09 21:23:43 +0000 |
commit | 6f15add0ac72525c70fa99b873feb28093af356e (patch) | |
tree | 373f322b91c7bf05f8578782f55ad21c111d0ecb /third_party/npapi | |
parent | 8fbfa3dc1620eeb1da8908c359bdbbb1467c44ff (diff) | |
download | chromium_src-6f15add0ac72525c70fa99b873feb28093af356e.zip chromium_src-6f15add0ac72525c70fa99b873feb28093af356e.tar.gz chromium_src-6f15add0ac72525c70fa99b873feb28093af356e.tar.bz2 |
Stray , at the end of one of the enums causes a fail with pedantic
warnings turned on (such as for Native Client).
Review URL: http://codereview.chromium.org/482005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34191 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/npapi')
-rw-r--r-- | third_party/npapi/bindings/npapi_extensions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/npapi/bindings/npapi_extensions.h b/third_party/npapi/bindings/npapi_extensions.h index f72a9aa..f93a9e9 100644 --- a/third_party/npapi/bindings/npapi_extensions.h +++ b/third_party/npapi/bindings/npapi_extensions.h @@ -100,7 +100,7 @@ typedef enum { NPMouseButton_None = -1, NPMouseButton_Left = 0, NPMouseButton_Middle = 1, - NPMouseButton_Right = 2, + NPMouseButton_Right = 2 } NPMouseButtons; typedef enum { |