diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-25 02:11:29 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-25 02:11:29 +0000 |
commit | a617841ca2bb5f4abc8d14884193dce35df87ceb (patch) | |
tree | 001067c6b3e6df353680afe0e128e94d86cb51bb /libgo | |
parent | 03aa4bdbfae7fb5172bbeefbed198afb6f8cb4d8 (diff) | |
download | gcc-a617841ca2bb5f4abc8d14884193dce35df87ceb.tar.gz |
runtime: Fix typo in go-nosys.c.
From Rainer Orth.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184569 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 b2829589b14..deacec50127 100644 --- a/libgo/runtime/go-nosys.c +++ b/libgo/runtime/go-nosys.c @@ -52,7 +52,7 @@ faccessat (int fd __attribute__ ((unused)), int fallocate (int fd __attribute__ ((unused)), int mode __attribute__ ((unused)), - off_t offset __attribute __ ((unused)), + off_t offset __attribute__ ((unused)), off_t len __attribute__ ((unused))) { errno = ENOSYS; |