silence GCC 4.3.2 warning in Java_java_lang_Runtime_exec

This commit is contained in:
Joel Dice 2008-11-24 17:03:00 -07:00
parent 207f093464
commit a3c8a0460d

View File

@ -267,7 +267,7 @@ Java_java_lang_Runtime_exec(JNIEnv* e, jclass,
// Error if here
char c = errno;
write(msg[1], &c, 1);
ssize_t rv UNUSED = write(msg[1], &c, 1);
exit(127);
} break;