From edae15ae5b348b20402ea7a63b0533854360812e Mon Sep 17 00:00:00 2001 From: sperber Date: Fri, 14 Feb 2003 14:17:36 +0000 Subject: [PATCH] Replace a C++ comment by a C comment. --- c/unix/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/unix/socket.c b/c/unix/socket.c index 7acca9e..6ea2271 100644 --- a/c/unix/socket.c +++ b/c/unix/socket.c @@ -43,7 +43,7 @@ s48_value s48_add_pending_channel (s48_value channel) S48_CHECK_CHANNEL(channel); socket_fd = S48_UNSAFE_EXTRACT_FIXNUM(S48_UNSAFE_CHANNEL_OS_INDEX(channel)); - if (! s48_add_pending_fd(socket_fd, 1)) // 1 for: yes, is input + if (! s48_add_pending_fd(socket_fd, 1)) /* 1 for: yes, is input */ s48_raise_out_of_memory_error(); return S48_UNSPECIFIC;