From b4d26994febb37c76d1b2cf6e97ebfaf6729ea0f Mon Sep 17 00:00:00 2001 From: ian Date: Fri, 18 Oct 2013 13:26:40 +0000 Subject: runtime: Fix typo in dup3 fallback implementation. From Uros Bizjak. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203820 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgo/runtime/go-nosys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgo/runtime/go-nosys.c b/libgo/runtime/go-nosys.c index f389dbe0cbe..0a94de0523e 100644 --- a/libgo/runtime/go-nosys.c +++ b/libgo/runtime/go-nosys.c @@ -47,7 +47,7 @@ accept4 (int sockfd __attribute__ ((unused)), int dup3 (int oldfd __attribute__ ((unused)), int newfd __attribute__ ((unused)), - int flags __attribtue__ ((unused))) + int flags __attribute__ ((unused))) { errno = ENOSYS; return -1; -- cgit v1.2.1