summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2006-01-04 12:37:37 +0000
committerAndreas Jaeger <aj@suse.de>2006-01-04 12:37:37 +0000
commit8632c0cf9fc3b772c355b51addfb930483e79032 (patch)
treea88c0b5abd3ac2c524f1dfe29f255b92bf288a53
parentdb59b28bdd429d57d82c0c39ed1eab00ce0a9da3 (diff)
Fix last commit.
-rw-r--r--sysdeps/unix/sysv/linux/mips/brk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/brk.c b/sysdeps/unix/sysv/linux/mips/brk.c
index 33e51a22b2..00056bee7a 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;