diff options
Diffstat (limited to 'libgo/runtime/go-new-channel.c')
-rw-r--r-- | libgo/runtime/go-new-channel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libgo/runtime/go-new-channel.c b/libgo/runtime/go-new-channel.c index d16bde62d75..3ddc205e05d 100644 --- a/libgo/runtime/go-new-channel.c +++ b/libgo/runtime/go-new-channel.c @@ -44,7 +44,6 @@ __go_new_channel (size_t element_size, size_t entries) ret->selected_for_send = 0; ret->selected_for_receive = 0; ret->is_closed = 0; - ret->saw_close = 0; ret->select_send_queue = NULL; ret->select_receive_queue = NULL; ret->select_mutex = NULL; |