aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-new-channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/go-new-channel.c')
-rw-r--r--libgo/runtime/go-new-channel.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libgo/runtime/go-new-channel.c b/libgo/runtime/go-new-channel.c
index d57f52c..d16bde6 100644
--- a/libgo/runtime/go-new-channel.c
+++ b/libgo/runtime/go-new-channel.c
@@ -39,7 +39,6 @@ __go_new_channel (size_t element_size, size_t entries)
i = pthread_cond_init (&ret->cond, NULL);
__go_assert (i == 0);
ret->element_size = element_size;
- ret->closed_op_count = 0;
ret->waiting_to_send = 0;
ret->waiting_to_receive = 0;
ret->selected_for_send = 0;