mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
added space before ';' in empty for loop to make Apple happy
This commit is contained in:
parent
57092ece0d
commit
6323c76540
@ -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"),
|
||||
|
Loading…
Reference in New Issue
Block a user