summaryrefslogtreecommitdiff
path: root/native
diff options
context:
space:
mode:
authorCasey Marshall <csm@gnu.org>2006-09-19 01:28:46 +0000
committerCasey Marshall <csm@gnu.org>2006-09-19 01:28:46 +0000
commit567c1a7d95d014b5429868b96e4a714999dd6ed3 (patch)
tree0d4c9ba721e01e5c2f2460151117ab774269c3cd /native
parentb85ecc3d456c56428a5e0b75140a94f78506186f (diff)
downloadclasspath-567c1a7d95d014b5429868b96e4a714999dd6ed3.tar.gz
2006-09-18 Casey Marshall <csm@gnu.org>
* native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c (Java_gnu_java_net_VMPlainSocketImpl_listen): remove debug printf.
Diffstat (limited to 'native')
-rw-r--r--native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c b/native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c
index 989ed3146..6ebb64fa5 100644
--- a/native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c
+++ b/native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c
@@ -155,7 +155,6 @@ Java_gnu_java_net_VMPlainSocketImpl_listen (JNIEnv *env,
/* listen is not a blocking system call */
if ((ret = listen (fd, backlog)) == -1)
JCL_ThrowException (env, IO_EXCEPTION, strerror (errno));
- printf("listen returns %d\n", ret);
}