summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-09-25 22:55:31 -0400
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-09-25 22:55:31 -0400
commitcf35b106c88b53847a1b641ba302bda4cb383c18 (patch)
tree2ce8bf8ab5c289935a2ac4c586ed4c8de2ffa9b8
parent9ec779dab3b1b21eacd1e46b5476e12761130c96 (diff)
parentf1006c23c686fe30d29b1883dae75b284547eb91 (diff)
downloadframeworks_native-cf35b106c88b53847a1b641ba302bda4cb383c18.zip
frameworks_native-cf35b106c88b53847a1b641ba302bda4cb383c18.tar.gz
frameworks_native-cf35b106c88b53847a1b641ba302bda4cb383c18.tar.bz2
Merge change 27211 into eclair
* changes: 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];
}
}