added space before ';' in empty for loop to make Apple happy

This commit is contained in:
JET 2012-04-04 13:13:06 -06:00
parent 57092ece0d
commit 6323c76540

View File

@ -638,7 +638,7 @@ extern char** environ;
extern "C" JNIEXPORT jobjectArray JNICALL
Java_java_lang_System_getEnvironment(JNIEnv* env, jclass) {
int length;
for (length = 0; environ[length] != 0; ++length);
for (length = 0; environ[length] != 0; ++length) ;
jobjectArray stringArray =
env->NewObjectArray(length, env->FindClass("java/lang/String"),