diff options
author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2017-04-12 17:22:13 -0600 |
---|---|---|
committer | Jae Shin <jaeshin@google.com> | 2017-09-19 01:44:08 +0000 |
commit | 5873918849e5c10adab778f95d1254da746b10b1 (patch) | |
tree | 89006ae3addcf6488e69ac667663391fe8a279eb /opengl/tests/gl2_basic/gl2_basic.cpp | |
parent | a885c3a9cfb13cd6342f3c8a3f2134e0a190ac9c (diff) |
Fix unused parameter warning
Test: make
Bug: 29940137
Merged-In: Iac7c58674f4191baa28e8141851bd74ab2329771
Change-Id: Iac7c58674f4191baa28e8141851bd74ab2329771
(cherry picked from commit 10d17f78f3e63e93b03c86a8c013584a8a7e21f3)
Diffstat (limited to 'opengl/tests/gl2_basic/gl2_basic.cpp')
-rw-r--r-- | opengl/tests/gl2_basic/gl2_basic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/gl2_basic/gl2_basic.cpp b/opengl/tests/gl2_basic/gl2_basic.cpp index adcda0ca4b..ee88667328 100644 --- a/opengl/tests/gl2_basic/gl2_basic.cpp +++ b/opengl/tests/gl2_basic/gl2_basic.cpp @@ -265,7 +265,7 @@ int printEGLConfigurations(EGLDisplay dpy) { return true; } -int main(int argc, char** argv) { +int main(int /*argc*/, char** /*argv*/) { EGLBoolean returnValue; EGLConfig myConfig = {0}; |