diff options
Diffstat (limited to 'libgo/runtime/go-send-small.c')
-rw-r--r-- | libgo/runtime/go-send-small.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-send-small.c b/libgo/runtime/go-send-small.c index 89a7032756d..06bcb41b9ad 100644 --- a/libgo/runtime/go-send-small.c +++ b/libgo/runtime/go-send-small.c @@ -31,7 +31,7 @@ __go_send_acquire (struct __go_channel *channel, _Bool for_select) channel->selected_for_send = 0; i = pthread_mutex_unlock (&channel->lock); __go_assert (i == 0); - __go_panic_msg ("send on closed channel"); + runtime_panicstring ("send on closed channel"); } /* If somebody else has the channel locked for sending, we have |