summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Palevich <jackpal@google.com>2009-09-25 19:55:07 -0700
committerJack Palevich <jackpal@google.com>2009-09-25 19:55:07 -0700
commitd7de5ffb302e8178688f806766711b0036c13fac (patch)
tree50ca28e12d34157fee93705ee12e8bba4e6ab234
parentaa3b0bee51e9e7c0d46f93bcdcfee62b004b3a78 (diff)
downloadframeworks_base-d7de5ffb302e8178688f806766711b0036c13fac.zip
frameworks_base-d7de5ffb302e8178688f806766711b0036c13fac.tar.gz
frameworks_base-d7de5ffb302e8178688f806766711b0036c13fac.tar.bz2
Fix build.
-rw-r--r--opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java b/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
index 8b94dec..2dae090 100644
--- a/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
+++ b/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
@@ -118,7 +118,7 @@ class GL2JNIView extends GLSurfaceView {
}
EGLConfig[] configs = new EGLConfig[numConfigs];
egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
- return configs[0s];
+ return configs[0];
}
}