From 1b27504c9fc9463645cdb297b8e8973a3dfbd760 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 4 Jan 2006 12:37:37 +0000 Subject: [PATCH] Fix last commit. --- sysdeps/unix/sysv/linux/mips/brk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/mips/brk.c b/sysdeps/unix/sysv/linux/mips/brk.c index 33e51a2..00056be 100644 --- a/sysdeps/unix/sysv/linux/mips/brk.c +++ b/sysdeps/unix/sysv/linux/mips/brk.c @@ -41,7 +41,7 @@ __brk (void *addr) "syscall" /* Perform the system call. */ : "=r" (res) : "I" (SYS_ify (brk)), "r" (addr) -+ : "$4", "$7", __SYSCALL_CLOBBERS); + : "$4", "$7", __SYSCALL_CLOBBERS); newbrk = (void *) res; } __curbrk = newbrk; -- 2.7.4