diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-18 13:26:40 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-18 13:26:40 +0000 |
commit | b4d26994febb37c76d1b2cf6e97ebfaf6729ea0f (patch) | |
tree | 9c930aeb4d6ca7a029d73ccf82e09115eea0e079 /libgo | |
parent | dd9784d40d4faa99225cd42fe5bfede82071ad56 (diff) | |
download | gcc-b4d26994febb37c76d1b2cf6e97ebfaf6729ea0f.tar.gz |
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
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/go-nosys.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |