diff mbox

[libgo] Fix typo in libgo/runtime/go-nosys.c

Message ID ydd39a0dsx1.fsf@manam.CeBiTec.Uni-Bielefeld.DE
State New
Headers show

Commit Message

Rainer Orth Feb. 24, 2012, 5:48 p.m. UTC
Mainline bootstrap on x86_64-unknown-linux-gnu (CentOS 5.6) was failing
due to a trivial typo.  Fixed as follows.

	Rainer

Comments

Ian Lance Taylor Feb. 25, 2012, 2:11 a.m. UTC | #1
Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> writes:

> Mainline bootstrap on x86_64-unknown-linux-gnu (CentOS 5.6) was failing
> due to a trivial typo.  Fixed as follows.

Whoops.  Thanks.  Committed.

Ian
diff mbox

Patch

diff --git a/libgo/runtime/go-nosys.c b/libgo/runtime/go-nosys.c
--- 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;