]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
runtime: Fix typo in dup3 fallback implementation.
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 18 Oct 2013 13:26:40 +0000 (13:26 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 18 Oct 2013 13:26:40 +0000 (13:26 +0000)
From Uros Bizjak.

From-SVN: r203820

libgo/runtime/go-nosys.c

index f389dbe0cbe106fd198b2dec4146aa03f1729a6b..0a94de0523e1bf8500db316657ecfbce24260ef8 100644 (file)
@@ -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;