diff options
author | msneck@google.com <msneck@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-23 22:22:41 +0000 |
---|---|---|
committer | msneck@google.com <msneck@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-23 22:22:41 +0000 |
commit | 08ffddf1c2dfed2fe307b295e3325fcb3b3f70c9 (patch) | |
tree | 75b28756d4ce3eee9ce090fdea7e992f6a752ddd /third_party/npapi | |
parent | 971a718b11f22967bf573dae5dcb351782ea908c (diff) | |
download | chromium_src-08ffddf1c2dfed2fe307b295e3325fcb3b3f70c9.zip chromium_src-08ffddf1c2dfed2fe307b295e3325fcb3b3f70c9.tar.gz chromium_src-08ffddf1c2dfed2fe307b295e3325fcb3b3f70c9.tar.bz2 |
Remove extra ',' at the end of an enum list which fails to compile in C with
"-pedantic" enabled.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2830024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50654 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 82a7c59..ec93c29 100644 --- a/third_party/npapi/bindings/npapi_extensions.h +++ b/third_party/npapi/bindings/npapi_extensions.h @@ -622,7 +622,7 @@ typedef enum { NPCursorTypeNone = 37, NPCursorTypeNotAllowed = 38, NPCursorTypeZoomIn = 39, - NPCursorTypeZoomOut = 40, + NPCursorTypeZoomOut = 40 } NPCursorType; // Temporary SetCursor API. |